In [5]:
%load_ext autoreload
%autoreload 2
from pprint import PrettyPrinter
ppr = lambda x: PrettyPrinter(indent=4).pprint(x)
The autoreload extension is already loaded. To reload it, use:
%reload_ext autoreload
In [1]:
import os
# import pfile.to
# import pstr.to
from bs4 import BeautifulSoup
import requests
# import pstr
import re
# import pickle
# import urllib2
# from selenium import webdriver
# from selenium.webdriver.common.keys import Keys
import urlparse
import urllib
from datetime import datetime
import random
In [4]:
In [4]:
### load user_agent_list !!!!!!!! (you might find these below this notebook)
# verify that we have user_agent_list
len(user_agent_list)
Out[4]:
1056
In [150]:
##########
# SETTINGS
root_folder = os.path.join(os.environ['GD_FOLDER'], 'Shared/ms_otosense')
save_folder = os.path.join(root_folder, 'slurps')
# save_folder = os.path.join(root_folder, 'slurps_test2')
log_file = os.path.join(root_folder, 'progress_log.log')
user_agent = 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-US) AppleWebKit/532.2 (KHTML, like Gecko) Chrome/4.0.222.5 Safari/532.2'
################################################
# UTILS
html_re = re.compile('\.html$')
def mk_url_list_from_queries(query_list, get_url_fun, result_page_number=0):
return [get_url_fun(x, y) for x in query_list for y in range(result_page_number)]
def peep_in_list(A):
print A[0]
print A[1]
print A[-2]
print A[-1]
def cartesian_op(op, A, B):
return [op(a,b) for a in A for b in B]
def log_to_file(filename, msg):
with open(filename, "a") as myfile:
myfile.write(hms_message() + msg + "\n")
def url_encode(query):
# look at urlparse for cleaner ways to do this
return urllib.urlencode({'':query})[1:]
def hms_message(msg=''):
t = datetime.now().time()
return "%02.0f:%02.0f:%02.0f - %s" % (t.hour, t.minute, t.second, msg)
def save_text_to_file(s, filepath):
pstr.to.file(s, filepath)
# text_file = open(filepath, "w")
# text_file.write(s.encode('utf-8'))
# text_file.close()
def filename_from_url_no_extension(url):
return url.replace('/','§').replace(':','{')
def filename_from_url(url):
return url.replace('/','§').replace(':','{') + '.html'
def url_from_filename(filename):
return html_re.sub('', filename.replace('§','/').replace('{',':'))
def random_user_agent():
"""
Returns a random user agent from the full list of user agents.
Cycles through all agents before re-sampling from the full list again.
"""
return random.choice(user_agent_list)
# def get_dogpile_html_from_query(query):
# dogpile_url_prefix = 'http://www.dogpile.com/search/web'
# response = requests.get(dogpile_url_prefix, params={'q': query})
# if response:
# return response.text
# else:
# return None
# def acquire_query_result_from_dogpile(query, save_folder=os.path.join(os.environ['MS_DATA'], 'misc')):
# html = get_dogpile_html_from_query(query)
# if html:
# file_name = url_encode(query) + '.html'
# file_path = os.path.join(save_folder, file_name)
# save_html(html, file_path)
# else:
# raise ValueError("There was a problem in acquiring %s" % query)
################################################
# SPECIFIC METHODS
dogpile_base_url = 'http://www.dogpile.com'
dogpile_search_url = '/search/web?'
google_base_url = 'http://www.google.com'
google_search_url = '/search?'
google_default_params = {
'num':'100', # number of results - maximum 100
'start': '1' # number of results to start with
}
gshop_default_params = dict(google_default_params, **{
'tbm':'shop', # the thing that makes it look on google shopping
'tbs':'p_ord:rv' # type of view - could be vw:g,p_ord%3Arv for gridded view
} )
gblogs_default_params = dict(google_default_params, **{
'tbm':'blg' # the thing that makes it look on google blogs
})
gnews_default_params = dict(google_default_params, **{
'tbm':'nws' # the thing that makes it look on google news
})
def qsi_from_result_page_number(page_number):
return page_number*10 + 1
def get_dogpile_request_url(query, result_page_number=0):
'''
returns a url
'''
first_item_number = qsi_from_result_page_number(result_page_number)
return urlparse.urljoin(base=dogpile_base_url,
url=dogpile_search_url
+ urllib.urlencode(query={'q': query, 'qsi': first_item_number}))
def get_gsearch_request_url(query, result_page_number=0, number_of_results_per_page=100):
'''
returns a url to get a google shopping result page
'''
start_result_number = "%d" % (result_page_number*number_of_results_per_page + 1)
get_params = dict(google_default_params,
**{'start':start_result_number,
'num':number_of_results_per_page,
'query':query})
return urlparse.urljoin(base=google_base_url,
url=google_search_url
+ urllib.urlencode(query=get_params))
def get_gshop_request_url(query, result_page_number=0, number_of_results_per_page=100):
'''
returns a url to get a google shopping result page
'''
start_result_number = "%d" % (result_page_number*number_of_results_per_page + 1)
get_params = dict(gshop_default_params,
**{'start':start_result_number,
'num':number_of_results_per_page,
'query':query})
return urlparse.urljoin(base=google_base_url,
url=google_search_url
+ urllib.urlencode(query=get_params))
def get_gnews_request_url(query, result_page_number=0, number_of_results_per_page=100):
'''
returns a url to get a google shopping result page
'''
start_result_number = "%d" % (result_page_number*number_of_results_per_page + 1)
get_params = dict(gnews_default_params,
**{'start':start_result_number,
'num':number_of_results_per_page,
'query':query})
return urlparse.urljoin(base=google_base_url,
url=google_search_url
+ urllib.urlencode(query=get_params))
def get_gblogs_request_url(query, result_page_number=0, number_of_results_per_page=100):
'''
returns a url to get a google shopping result page
'''
start_result_number = "%d" % (result_page_number*number_of_results_per_page + 1)
get_params = dict(gblogs_default_params,
**{'start':start_result_number,
'num':number_of_results_per_page,
'query':query})
return urlparse.urljoin(base=google_base_url,
url=google_search_url
+ urllib.urlencode(query=get_params))
################################################
# GENERAL METHODS
# def get_url_from_seed(seed):
# return get_dogpile_request_url(seed)
# def get_html_from_seed(seed):
# url = get_url_from_seed(seed)
# return get_html_of_url(url)
headers = { \
"User-Agent": "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Accept-Encoding": "gzip, deflate",
"Connection": "close",
"DNT": "1"
}
ANONYMIZER_AUTH = requests.auth.HTTPProxyAuth('trial-otosense', 'ahR5shij')
ANONYMIZER_PROXIES = {'http': 'exploder.ion-access.com:80', 'https': 'exploder.ion-access.com:80'}
def url_slurper(url, timeout=7.0):
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
return response.text
else:
return None
def url_content_slurper(url, timeout=7.0):
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
return response.content
else:
return None
def url_response_slurper(url, timeout=7.0):
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
return response
else:
return None
import shutil
def image_slurper(url, timeout=7.0):
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, stream=True,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
url_file = filename_from_url_no_extension(url)
with open(facc('slurp_images/' + url_file + '.png'), 'wb') as out_file:
shutil.copyfileobj(response.raw, out_file)
else:
return None
def html_is_valid(html):
if html:
return True
else:
return False
def log_progress(msg, filename='progress_log.log'):
# print hms_message(msg)
log_to_file(filename, msg)
def log_error(msg, filename='progress_log.log'):
# print hms_message('ERROR: ' + msg)
log_to_file(filename, 'ERROR: ' + msg)
def file_path_of_slurp(slurp_spec):
return os.path.join(save_folder, filename_from_url(slurp_spec))
def save_html_of_slurp(html, slurp_spec):
save_text_to_file(s=html, filepath=file_path_of_slurp(slurp_spec))
def slurp_already_saved(slurp_spec):
return os.path.exists(file_path_of_slurp(slurp_spec))
In [149]:
file_path_of_slurp('asdf')
Out[149]:
'/Users/thor/Google Drive/Shared/ms_otosense/slurps_test/asdf.html'
In [7]:
query = 'deaf people are cool'
print get_gsearch_request_url(query)
print get_gshop_request_url(query)
print get_gnews_request_url(query)
print get_gblogs_request_url(query)
http://www.google.com/search?start=1&num=100&query=deaf+people+are+cool
http://www.google.com/search?start=1&num=100&tbm=shop&query=deaf+people+are+cool&tbs=p_ord%3Arv
http://www.google.com/search?start=1&num=100&tbm=nws&query=deaf+people+are+cool
http://www.google.com/search?start=1&num=100&tbm=blg&query=deaf+people+are+cool
In [ ]:
In [ ]:
In [60]:
searchterms_dict = dict()
searchterms_dict['who'] = ['deaf', '"hard of hearing"', '"hearing impaired"',
'"hearing impairment"', '"hearing loss"']
searchterms_dict['what'] = ['clock', '"baby monitor"', '"fire alarm"', '"smoke alarm"', 'alarm']
searchterms_dict['how'] = ['flash', 'flashing', 'vibrate', 'vibrating']
searchterms_dict['where'] = ['', 'site:facebook.com', 'site:youtube.com', 'site:twitter.com']
In [61]:
import itertools
query_list_with_sites = [' '.join(x) for x in itertools.product(searchterms_dict['who'],
searchterms_dict['what'],
searchterms_dict['how'],
searchterms_dict['where'] )]
print len(query_list_with_sites)
peep_in_list(query_list_with_sites)
400
deaf clock flash
deaf clock flash site:facebook.com
"hearing loss" alarm vibrating site:youtube.com
"hearing loss" alarm vibrating site:twitter.com
In [62]:
gservice_query_list = [' '.join(x) for x in itertools.product(searchterms_dict['who'],
searchterms_dict['what'],
searchterms_dict['how'])]
print len(gservice_query_list)
peep_in_list(gservice_query_list)
100
deaf clock flash
deaf clock flashing
"hearing loss" alarm vibrate
"hearing loss" alarm vibrating
In [63]:
num_of_pages_per_query = 5
url_list = []
shopping_url_list = mk_url_list_from_queries(gservice_query_list, get_gshop_request_url, num_of_pages_per_query)
url_list += shopping_url_list
url_list += mk_url_list_from_queries(query_list_with_sites, get_gsearch_request_url, num_of_pages_per_query)
url_list += mk_url_list_from_queries(gservice_query_list, get_gnews_request_url, num_of_pages_per_query)
url_list += mk_url_list_from_queries(gservice_query_list, get_gblogs_request_url, num_of_pages_per_query)
print len(url_list)
peep_in_list(url_list)
3500
http://www.google.com/search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv
http://www.google.com/search?start=101&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv
http://www.google.com/search?start=301&num=100&tbm=blg&query=%22hearing+loss%22+alarm+vibrating
http://www.google.com/search?start=401&num=100&tbm=blg&query=%22hearing+loss%22+alarm+vibrating
In [64]:
# stopped at 1134 last
len(url_list)
Out[64]:
3500
In [71]:
#### SLURP URLS
get_html_of_url = url_slurper
pause_between_slurps_in_seconds = 11.0
log_file = os.path.join(root_folder, 'progress_log.log')
if os.path.exists(log_file):
os.remove(log_file)
skipped = 0
for i, url in enumerate(url_list):
try:
# # skip urls already slurped
# if slurp_already_saved(url):
# skipped += 1
# continue # go to the next url
# else:
# if skipped > 0:
# log_progress('SKIPPED: %d urls skipped because we already had them.' % skipped, log_file)
# skipped = 0 # reset skipped counter
# slurp
log_progress('item %d: slurping %s' % (i, url), log_file)
try:
html = get_html_of_url(url)
except BaseException as e:
log_error('item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
continue # go to the next url
# process
if html_is_valid(html):
save_html_of_slurp(html, url)
else:
log_error('html not valid: item %d, %s' % (i, url), log_file)
except BaseException as e:
log_error('II item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
log_progress('!!!!!!!!!!!!!! I am DONE !!!!!!!!!!!', log_file)
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-71-d6c699b245aa> in <module>()
33 except BaseException as e:
34 log_error('II item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
---> 35 pause(pause_between_slurps_in_seconds)
36
37 log_progress('!!!!!!!!!!!!!! I am DONE !!!!!!!!!!!', log_file)
/Users/thor/anaconda/lib/python2.7/site-packages/matplotlib/pyplot.pyc in pause(interval)
192 # No on-screen figure is active, so sleep() is all we need.
193 import time
--> 194 time.sleep(interval)
195
196
KeyboardInterrupt:
In [ ]:
In [ ]:
In [ ]:
In [151]:
import pfile.accessor
root_folder = os.path.join(os.environ['GD_FOLDER'], 'Shared/ms_otosense')
parse_dicts_folder = os.path.join(root_folder, 'parse_dicts')
facc = pfile.accessor.for_local(root_folder)
# dfacc = pfile.accessor.for_local(parse_dicts_folder, extension='dict_list', force_extension=True)
list_of_gshop_text_filename = os.path.join(root_folder, 'list_of_gshop_files.txt')
In [154]:
url_list = facc.load('img_src_list.pickle')
len(url_list)
Out[154]:
465
In [155]:
#### SLURP IMAGES
pause_between_slurps_in_seconds = 11.0
log_file = os.path.join(root_folder, 'progress_log.log')
if os.path.exists(log_file):
os.remove(log_file)
skipped = 0
for i, url in enumerate(url_list):
try:
# # skip urls already slurped
# if slurp_already_saved(url):
# skipped += 1
# continue # go to the next url
# else:
# if skipped > 0:
# log_progress('SKIPPED: %d urls skipped because we already had them.' % skipped, log_file)
# skipped = 0 # reset skipped counter
# slurp
log_progress('item %d: slurping %s' % (i, url), log_file)
try:
image_slurper(url)
except BaseException as e:
log_error('item %d: image_slurper(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
continue # go to the next url
except BaseException as e:
log_error('II item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
log_progress('!!!!!!!!!!!!!! I am DONE !!!!!!!!!!!', log_file)
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [115]:
import pstr.to
import pstr.trans
root_folder = os.path.join(os.environ['GD_FOLDER'], 'Shared/ms_otosense')
save_folder = os.path.join(root_folder, 'slurps_test')
url = url_list[0]
url
Out[115]:
'http://www.google.com/search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv'
In [98]:
# url = 'http://www.thorwhalen.com'
In [99]:
html = url_slurper(url)
pstr.to.file(html, 'test1.html')
In [100]:
html = url_content_slurper(url)
pstr.to.file(pstr.trans.str_to_unicode_or_bust(html), 'test2.html')
In [ ]:
In [101]:
f = ['test1.html', 'test2.html']
for fi in f:
s = pfile.to.str(fi)
s = str(s)
b = BeautifulSoup(s)
t = b.findAll('li')
print "%s: %d" % (fi, t)
test1.html: 10
test2.html: 10
In [92]:
s = pfile.to.str(fi)
In [94]:
b = BeautifulSoup(s)
In [119]:
url
Out[119]:
'http://www.google.com/search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv'
In [96]:
import parse.util
In [97]:
parse.util.open_in_firefox(fi)
opening test2.html
In [104]:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-104-bb0352a4a790> in <module>()
----> 1 from serialize import deserialize_session, serialize_session
ImportError: cannot import name deserialize_session
In [120]:
# response = url_response_slurper(url)
response = requests.get(url)
In [136]:
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1a3) Gecko/20060528 Camino/1.0+'}
69
In [137]:
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_6) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.12 Safari/534.24'}
0
In [140]:
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.14 (KHTML, like Gecko) Chrome/9.0.601.0 Safari/534.14'}
0
In [143]:
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; Windows NT 5.0)'}
44
In [142]:
headers
Out[142]:
{'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate',
'Connection': 'close',
'DNT': '1',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.45 Safari/535.19'}
In [144]:
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; Windows NT 5.0)'}
53
In [145]:
response = requests.get(url, headers=headers, verify=False,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print headers
print ""
print len(BeautifulSoup(response.text).findAll('li'))
{'DNT': '1', 'Connection': 'close', 'Accept-Encoding': 'gzip, deflate', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; Windows NT 5.0)'}
52
In [ ]:
In [138]:
pstr.to.file(response.text, 'test4.html')
In [139]:
parse.util.open_in_firefox('test4.html')
opening test4.html
In [131]:
headers
Out[131]:
{'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Encoding': 'gzip, deflate',
'Connection': 'close',
'DNT': '1',
'User-Agent': 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en; rv:1.8.1.4) Gecko/20070607 Camino/1.5'}
In [79]:
s = pstr.trans.str_to_unicode_or_bust(html)
In [84]:
import pickle
In [111]:
pickle.dump(response.content, open('test3.pickle','w'))
In [112]:
h = pickle.load(open('test3.pickle','r'))
In [121]:
len(BeautifulSoup(response.text).findAll('li'))
Out[121]:
52
In [ ]:
In [114]:
response.content
Out[114]:
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r\n<html xmlns="http://www.w3.org/1999/xhtml">\r\n<head>\r\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r\n<title>Thor Whalen</title>\r\n<link rel="stylesheet" type="text/css" href="style.css" />\r\n</head>\r\n\r\n\r\n<body>\r\n<div id="bg">\r\n <div id="wrap">\r\n <div id="header">\r\n <ul id="nav">\r\n <li class="p"><a href="index.html">HOME</a></li>\r\n <li class="p"><a href="projects.html">PROJECTS</a></li>\r\n <li class="p"><a href="biography.html">BIO</a></li>\r\n <li class="p"><a href="contact.html">CONTACT</a></li>\r\n </ul>\r\n </div>\r\n <!-- /header -->\r\n <div id="content">\r\n <div class="side fr">\r\n\r\n </div>\r\n <div class="main fl">\r\n <div class="text">\r\n <h2>DATA SCIENTIST</h2>\r\nAt the intersection of mathematics, computer science and business, data science was a term that was coined to describe the techniques meant to extract meaning from \ndata and creating data-scentric products. \r\n \r\n\t My curriculum brought me to data science through pure mathematics. \nWhere there\'s quantity, uncertainty, rationality, \r\n or structure, there\'s something to be done with math.\r\n My job was to uncover those aspects, express the problem and objectives of \r\n the solution, and go about exploiting whatever mathematical aspects can be exploited\r\n in order to provide better solutions. \n This involves capturing and utilizing knowledge that is usually <i> locked-up </i> in clients\' experience and/or data.\r\n <br><br>\r\n \r\n I worked as a mathematics consultant since year 2000. \r\n Generally, I used a mathematical approach to define, analyze, \r\n solve and/or optimize given aspects of my clients\xe2\x80\x99 field. \r\n In particular, I developed new technological designs, audited and optimized \r\n business processes, and elaborated automatic forecasting \r\n and targeting solutions for marketing problems, \r\n mining and utilizing my clients\' knowledge of the field, \r\n and whatever data they were wise enough to have collected. \r\n <br><br>\r\n\r\n In my first years of consulting, I have applied myself to a wide range of disparate problems. \r\n\tMore recently, a few recurring themes have emerged from many of my projects. \r\n\tOne of them is that of developing automated systems \r\n\tthat can carry out a certain level of behavioral analysis. \r\n\tWhether assessing the tastes of clients, modeling the spread (or not) of viral campaigns, \r\n\tanalyzing the marketing strategies of companies through the emails they send or ads they disseminate on the web, \r\n\tmodeling the behavior of drug use, or predicting the evolution of airfares; these all involve a certain level of analysis of the behavior\r\n\tof the agents (individuals, social groups, companies, automatic systems, etc.) involved.\r\n\t\r\n\t <br><br>\r\n\tYou may get an idea of my most recent \r\n activities on the <a href="projects.html">PROJECTS</a> page.\r\n\t<br><br>\r\n \r\n\r\n I have a predilection for modern techniques that take advantage of our era\'s computing power, \r\n such as Bayesian methods, optimization meta-heuristics, graphical models, etc. \r\n Other methods/domains encountered regularly include: Cluster analysis, neural networks, information retrieval, \r\n machine learning, Markov chains, stochastic analysis, social network analysis, recommender systems, \r\n collaborative filtering, etc. The final result usually involves a mix of these approaches and good \r\n amount of home grown techniques, inspired by the specific problem at hand.\r\n <br><br>\r\n \r\n Generally, a consulting project will involve a work flow resembling the following:\r\n<ul>\r\n <li><p> Talk with and learn some elements of the expertise of the client.</li>\r\n <li><p> Carefully define these elements and the objectives of the client.</li>\r\n <li><p> Quantify and structure the relation between these elements.</li>\r\n <li><p> Search the literature for previous applications of mathematics to the domain.</li>\r\n <li><p> Train the client\'s engineers or help the client find the right data scientist profiles to hire.</li>\n <li><p> Develop innovative methods, formulas, algorithms, and/or full solutions from a combination of the client\xe2\x80\x99s expertise, \r\n state-of-art research, and novel self-grown techniques.</li>\r\n</ul>\r\n\r\n\r\n\r\n</p> \r\n </div>\r\n\r\n </div>\r\n <!-- /content -->\r\n </div>\r\n <div class="clearfix"></div>\r\n <div id="footer">\r\n <div id="ftinner">\r\n <div class="ftlink fl">\r\n <p id="copyright">\xc2\xa9 2008. All Rights Reserved. <br/>\r\n Designed by <a href="http://www.free-css-templates.com/">Free CSS Templates</a>, Thanks to <a href="http://www.legalhelpers.com/chapter-13-bankruptcy/chapter13.html">Chapter 13 Bankruptcy</a></p>\r\n </div>\r\n </div>\r\n </div>\r\n <!-- /footer -->\r\n </div>\r\n</div>\r\n\r\n<!-- /google analytics -->\r\n<script type="text/javascript">\r\nvar gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");\r\ndocument.write(unescape("%3Cscript src=\'" + gaJsHost + "google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E"));\r\n</script>\r\n<script type="text/javascript">\r\ntry {\r\nvar pageTracker = _gat._getTracker("UA-12671988-1");\r\npageTracker._trackPageview();\r\n} catch(err) {}</script>\r\n\r\n\r\n\r\n</body>\r\n</html>\r\n'
In [ ]:
In [86]:
type(html)
Out[86]:
requests.models.Response
In [28]:
def original_saver(html, url, spec):
save_text_to_file(s=html,
filepath=os.path.join(save_folder, spec + '_' + filename_from_url(url)))
def pstr_saver(html, url, spec):
pstr.to.file(html,
os.path.join(save_folder, spec + '_' + filename_from_url(url)))
def url_slurper(url, timeout=7.0):
# headers = {'User-Agent': user_agent}
# response = requests.get(url=url, headers=headers)
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
return response.text
else:
return None
def content_url_slurper(url, timeout=7.0):
# headers = {'User-Agent': user_agent}
# response = requests.get(url=url, headers=headers)
headers['User-Agent'] = random_user_agent()
response = requests.get(url, headers=headers, verify=False,
timeout=timeout, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
if response and response.ok:
return response.content
else:
return None
In [29]:
url = url_list[0]
In [52]:
original_saver(url_slurper(url), url, 'original_saver.url_slurper')
pause(10)
pstr_saver(url_slurper(url), url, 'pstr_saver.url_slurper')
# pause(10)
# original_saver(content_url_slurper(url), url, 'original_saver.content_url_slurper')
# pause(10)
# pstr_saver(content_url_slurper(url), url, 'pstr_saver.content_url_slurper')
#html = get_html_of_url(url)
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-52-d7916d531e9a> in <module>()
1 original_saver(url_slurper(url), url, 'original_saver.url_slurper')
----> 2 pause(10)
3 pstr_saver(url_slurper(url), url, 'pstr_saver.url_slurper')
4 # pause(10)
5 # original_saver(content_url_slurper(url), url, 'original_saver.content_url_slurper')
/Users/thor/anaconda/lib/python2.7/site-packages/matplotlib/pyplot.pyc in pause(interval)
192 # No on-screen figure is active, so sleep() is all we need.
193 import time
--> 194 time.sleep(interval)
195
196
KeyboardInterrupt:
In [31]:
f = ['original_saver.url_slurper', 'pstr_saver.url_slurper', 'original_saver.content_url_slurper', 'pstr_saver.content_url_slurper']
In [35]:
f = [
'original_saver.url_slurper_http{§§www.google.com§search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv.html',
'pstr_saver.url_slurper_http{§§www.google.com§search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv.html']
In [40]:
import pfile.to
b = BeautifulSoup(pfile.to.str(os.path.join(save_folder, f[0])))
bb = BeautifulSoup(pfile.to.str(os.path.join(save_folder, f[1])))
In [42]:
b.findAll('li')
Out[42]:
[<li class="gbt"><a class="gbzt" href="https://plus.google.com/?gpsrc=ogpy0&tab=fX" id="gb_119" onclick="gbar.logger.il(1,{t:119});"><span class="gbtb2"></span><span class="gbts">+You</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fw" id="gb_1" onclick="gbar.qs(this);gbar.logger.il(1,{t:1});"><span class="gbtb2"></span><span class="gbts">Search</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=fi" id="gb_2" onclick="gbar.qs(this);gbar.logger.il(1,{t:2});"><span class="gbtb2"></span><span class="gbts">Images</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://maps.google.com/maps?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fl" id="gb_8" onclick="gbar.qs(this);gbar.logger.il(1,{t:8});"><span class="gbtb2"></span><span class="gbts">Maps</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://play.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=f8" id="gb_78" onclick="gbar.qs(this);gbar.logger.il(1,{t:78});"><span class="gbtb2"></span><span class="gbts">Play</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.youtube.com/results?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=f1" id="gb_36" onclick="gbar.qs(this);gbar.logger.il(1,{t:36});"><span class="gbtb2"></span><span class="gbts">YouTube</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://news.google.com/nwshp?hl=en&tab=fn" id="gb_5" onclick="gbar.logger.il(1,{t:5});"><span class="gbtb2"></span><span class="gbts">News</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://mail.google.com/mail/?tab=fm" id="gb_23" onclick="gbar.logger.il(1,{t:23});"><span class="gbtb2"></span><span class="gbts">Gmail</span></a></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd" class="gbgt" href="http://www.google.com/intl/en/options/" id="gbztm" onclick="gbar.tg(event,this)"><span class="gbtb2"></span><span class="gbts gbtsa" id="gbztms"><span id="gbztms1">More</span><span class="gbma"></span></span></a><div aria-owner="gbztm" class="gbm" id="gbd"><div class="gbmc gbsb gbsbis" id="gbmmb"><ol class="gbmcc gbsbic" id="gbmm"><li class="gbmtc"><a class="gbmt" href="https://drive.google.com/?tab=fo" id="gb_25" onclick="gbar.logger.il(1,{t:25});">Drive</a></li><li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li><li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li><li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li><li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li><li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li><li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li><li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li></ol><div class="gbsbt"></div><div class="gbsbb"></div></div></div></li>,
<li class="gbmtc"><a class="gbmt" href="https://drive.google.com/?tab=fo" id="gb_25" onclick="gbar.logger.il(1,{t:25});">Drive</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li>,
<li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li>,
<li class="gbt"><a class="gbgt" href="https://accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/search%3Fstart%3D1%26num%3D100%26tbm%3Dshop%26query%3Ddeaf%2Bclock%2Bflash%26tbs%3Dp_ord:rv" id="gb_70" onclick="gbar.logger.il(9,{l:'i'})" target="_top"><span class="gbtb2"></span><span class="gbts" id="gbgs4"><span id="gbi4s1">Sign in</span></span></a></li>,
<li class="gbt gbtb"><span class="gbts"></span></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd5" class="gbgt" href="http://www.google.com/preferences?hl=en" id="gbg5" onclick="gbar.tg(event,this)" title="Options"><span class="gbtb2"></span><span class="gbts" id="gbgs5"><span id="gbi5"></span></span></a><div aria-owner="gbg5" class="gbm" id="gbd5"><div class="gbmc"><ol class="gbmcc" id="gbom"><li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li></ol></div></div></li>,
<li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li>,
<li class="sr__title sr__item">Price</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_max:35&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CA4QvSs4AQ">Up to $35</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:35,ppr_max:60&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CA8QvSs4AQ">$35 – $60</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:60,ppr_max:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBAQvSs4AQ">$60 – $100</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBEQvSs4AQ">Over $100</a></li>,
<li class="sr__title sr__item">Category</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,cat:4546&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBMQvSs4AQ">Alarm Clocks</a></li>,
<li class="sr__title sr__item">Seller</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6341274&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBUQvSs4AQ">eBay - esbuys</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6296724&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBYQvSs4AQ">eBay</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8175035&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBcQvSs4AQ">Walmart</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8740&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBgQvSs4AQ">Home Depot</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8455724&tbm=shop&q=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CBkQvSs4AQ">eBay - myheargear</a></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CB8Q8gIwADgB"><img alt="Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSy4iwMFVESfnhJiRPsyLj4J0BwhL10jDHo6Wv_nBEQCwdw7b4mvTBQlPe6AX2ibOak36sJbQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCAQ8wIwADgB">Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker</a></h3><div>Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker The new Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker AKA The Bomb Jr", has been designed for guys and girls of all ages on a mission and ...</div><a class="review-link" href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCEQ9AIwADgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">36 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCMQ8gIwATgB"><img alt="NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcRFdvDfefisMUEx03l6bxiABd1lR6U34_mR6JvFQh42MSiZ4MlJrg1D9NS7oRLoP7hYcLP_aQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$44</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCQQ8wIwATgB">NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White</a></h3><div>An ADA Compliant NuTone Door Chime Alert with <b>Flashing</b> Strobe can be used to notify the user by strobe light when someone is at the door. The receiver plugs into any AC outlet. ...</div><a class="review-link" href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCUQ9AIwATgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">5 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCcQ8gIwAjgB"><img alt="Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQt3S-okMPgXWWCovojcXTLZoNsYzygBFPgHrNwOCwdfm3WT8LPtMIjpahMTL3k2jLda44_mg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$31</b></div><div>from 10+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCgQ8wIwAjgB">Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker</a></h3><div>We dare you to sleep through this alarm <b>clock</b>. If the 113 dB adjustable tone and volume alarm don't wake you, the 12V bed shaker sure will. Stealth gray color with red controls ...</div><a class="review-link" href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCkQ9AIwAjgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCsQ8gIwAzgB"><img alt="Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRLxKOuwj0KDk28_tAo1POZFUNVc-XMfP-YGJ8X5aXjxDBYW3LNaPKFEKio5JV_3rpIp3N-CA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$30</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CCwQ8wIwAzgB">Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS</a></h3><div>Brand New . Features: Loud Alarm <b>Clock</b> w/ Super Shaker Bright Red Display Pulsating <b>Flashing</b> Alert Light Powerful 6-Volt Bed Shaker Loud 102db Adjustable Tone & Volume Control ...</div><a class="review-link" href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CC0Q9AIwAzgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CC8Q8gIwBDgB"><img alt="Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSm4I1ksmgB-W1iPbY-BwJeZehqup3lkbc1HuMEkugOgqu0Ybd3FUy7ROrGyUmLpVHa22iA-A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDAQ8wIwBDgB">Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)</a></h3><div>Sonic Alert SB1000ss Sonic Boom Loud Vibrating Alarm <b>Clock</b> w/ Built In Receiver The Sonic Boom Alarm <b>Clock</b> is a unique <b>clock</b> that is guaranteed to wake up even the heaviest ...</div><a class="review-link" href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDEQ9AIwBDgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDMQ8gIwBTgB"><img alt="Sonic Bomb Sonic Boom Sweetheart Alarm" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDiTvrT-gO3SR52ULMbGETxSx6ZT2xzRsqcTRhqWkzFWSNp0NDxA-2VdJc-52gavosKuqT2A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDQQ8wIwBTgB">Sonic Bomb Sonic Boom Sweetheart Alarm</a></h3><div>- Sonic Alert sweetheart alarm - Comes with powerful 12 volt bed shaker - Hi/low dimmer switch - Extra loud pulsating audio alarmwith a loud 113db adjustable tone and volume ...</div><a class="review-link" href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDUQ9AIwBTgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDcQ8gIwBjgB"><img alt="Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQG2D4lc3TbzAc-rjLUTYeeDOFCNgCoCj8n9EX4wK1iIr6RLxpedbaDkIp5CyrA3TvqiBd9rw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$90</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDgQ8wIwBjgB">Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b></a></h3><div>Built-in telephone signaler. 87 dB extra-loud alarm (with adjustable tone & volume control). 12V Super Shaker bed vibrating unit included. Built-in <b>flashing</b> alert lights. Alarm ...</div><a class="review-link" href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CDkQ9AIwBjgB#reviews"><div class="star"><div style="width:52px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CO28QSwPpUrLhD8yHigKPuYCwBoHpwdIE6ZiF4n7ZtLGw2QEICRABIN7Nzx4oFVDBybir_f____8BYMmG7YiEpOwPyAEHqgQmT9Bje_Jmbt2GeIOnHFlm3GbdSbig_5GL-gPqVQcbp21wb0hqvifABQWgBiaAB9uAjhWQBwHgEtaMgvWdx6nL8AE&sig=AOD64_17VUG19sqWiwN4eZwuTWdzK4sNUA&ctype=5&ved=0CDsQ-hIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ..." src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRpw3sbxfajAxPqnzetnT1Y47ccr35sf8ojB3XbAd4SepbZ86fd0Ak6ThPKFHiqXDdOCdFYOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$78.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CO28QSwPpUrLhD8yHigKPuYCwBoHpwdIE6ZiF4n7ZtLGw2QEICRABIN7Nzx4oFVDBybir_f____8BYMmG7YiEpOwPyAEHqgQmT9Bje_Jmbt2GeIOnHFlm3GbdSbig_5GL-gPqVQcbp21wb0hqvifABQWgBiaAB9uAjhWQBwHgEtaMgvWdx6nL8AE&sig=AOD64_17VUG19sqWiwN4eZwuTWdzK4sNUA&ctype=5&ved=0CDwQ-RIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock Flashing</b> Light/Lamp Visual/Vibrating ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CUhlISwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQAiDezc8eKBVQlvzesgRgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeAS4rHhy6etyr5F&sig=AOD64_08KQ5f-MJUIIsOMtHICfcibHYskQ&ctype=5&ved=0CD4Q-hIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcTCL4kG0LGnGsaGIu05pu3z239MuAwVIiX-UzTfDjpZewhPxm-l52attqzjBmuuCht694ZFzA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$74.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CUhlISwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQAiDezc8eKBVQlvzesgRgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeAS4rHhy6etyr5F&sig=AOD64_08KQ5f-MJUIIsOMtHICfcibHYskQ&ctype=5&ved=0CD8Q-RIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla">Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CELBESwPpUrLhD8yHigKPuYCwBoHpwdIEse7OtZMB6ZeW5OMBCAkQAyDezc8eKBVQ2dimPWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BLUnJby3sLgmkE&sig=AOD64_3avwmjAv9vIMr47dHPAKx378RkXw&ctype=5&ved=0CEEQ-hIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ1DZ03k7pJ14_Shnxdoko2xTFey0CTF7SlRezv7pmZTe1O-pWaCsIoYX3GDng4n5ekMHpmaw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$162.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CELBESwPpUrLhD8yHigKPuYCwBoHpwdIEse7OtZMB6ZeW5OMBCAkQAyDezc8eKBVQ2dimPWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BLUnJby3sLgmkE&sig=AOD64_3avwmjAv9vIMr47dHPAKx378RkXw&ctype=5&ved=0CEIQ-RIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock</b>/Sound/Door Bell Visual <b>Flashing</b> ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CaLLGSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQBCDezc8eKBVQjciXxPv_____AWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BLuqbacqdv2xnY&sig=AOD64_1BAot4euAtcRiXxRyic4wuNmxiuA&ctype=5&ved=0CEQQ-hIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla"><img alt="Modern Retro Streamline Moderne Westclox &#39;moon Beam&#39; <b>Clock</b> - ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSIkdU-aNP22cYbWKCzCzB95n7KahncHCi3PwHwvSPIVqd0Zq0C8DPh6egL&usqp=CAE"/></a></div><div class="psliprice"><div><b>$33.99</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CaLLGSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQBCDezc8eKBVQjciXxPv_____AWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BLuqbacqdv2xnY&sig=AOD64_1BAot4euAtcRiXxRyic4wuNmxiuA&ctype=5&ved=0CEUQ-RIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla">Modern Retro Streamline Moderne Westclox 'moon Beam' <b>Clock</b> - ...</a></h3><div>Live with the beauty of vintage design, without the headaches of vintage technology.This <b>clock</b> by Westclox is an exact replica of the famous 'Moon Beam' design... this one in ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=Csc6YSwPpUrLhD8yHigKPuYCwBoHpwdIEse7OtZMB6ZeW5OMBCAkQBSDezc8eKBVQy6_l0fn_____AWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BK8r_Lh-8-W8uYB&sig=AOD64_2DqZP7CUxGIqZBhz8yqRnXRy5ghQ&ctype=5&ved=0CEcQ-hIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ..." src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRFntVo9Lhl_PtBSLpYgnV8mUs1lFs44J2aAgnIvKbdN65wzzgDKI9LlTWPlLKCBuhjvL7xOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$53.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=Csc6YSwPpUrLhD8yHigKPuYCwBoHpwdIEse7OtZMB6ZeW5OMBCAkQBSDezc8eKBVQy6_l0fn_____AWDJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BK8r_Lh-8-W8uYB&sig=AOD64_2DqZP7CUxGIqZBhz8yqRnXRy5ghQ&ctype=5&ved=0CEgQ-RIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Alert Boom Alarm LED Display <b>Clock</b>+Bed Shaker/Vibrator+ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CfJfaSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQBiDezc8eKBVQs46uxwZgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeASxaCzuavajIVU&sig=AOD64_2kJgJXsx7Z7Gfc6_GYElGQtLUeyQ&ctype=5&ved=0CEoQ-hIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSJUQFBD_JTSjYUJp1m8FKGOBvLAPdI-bc3-RX3xDY3ZmbVH3JxMY-kH8lNDO8-_h_qWMXU-Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$54.25</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CfJfaSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQBiDezc8eKBVQs46uxwZgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeASxaCzuavajIVU&sig=AOD64_2kJgJXsx7Z7Gfc6_GYElGQtLUeyQ&ctype=5&ved=0CEsQ-RIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ...</a></h3><div>Sonic Alert Sonic Boom SB1000 Alarm <b>Clock</b> w/ Lamp Flasher Sonic Alert's original alarm <b>clock</b>, with jack for optional bed shaker, on/off switch for controlling a lamp plugged ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CpbBJSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQByDezc8eKBVQuK7j7ANgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeASrPLDhtGD9L0s&sig=AOD64_3GGX5HR6V6zm-svO_v6GfRoaooZw&ctype=5&ved=0CE0Q-hIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Boom &quot;skull&quot; Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSOGrslAQx8vv9_aPV7gQtyS7wGa6syvU0d4IlxBQ37j3uRZuky2TbyWmMAfWUWuSNwv_fpQQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$56.95</b></div><div><cite>eBay - hear-world</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CpbBJSwPpUrLhD8yHigKPuYCwBoHpwdIEuYaZ6oQB6ajosOMBCAkQByDezc8eKBVQuK7j7ANgyYbtiISk7A_IAQeqBCZP0GN78mZu3YZ4g6ccWWbcZt1JuKD_kYv6A-pVBxunbXBvSGq-J8AFBaAGJoAH24COFZAHAeASrPLDhtGD9L0s&sig=AOD64_3GGX5HR6V6zm-svO_v6GfRoaooZw&ctype=5&ved=0CE4Q-RIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla">Sonic Boom "skull" Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b></a></h3><div>The Sonic Boom SBS550bc alarm <b>clock</b> (also known as "The Skull") from Sonic Alert is designed for guys and girls who think outside the box. With red <b>flashing</b> eye sockets, a ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CeO3qSwPpUrLhD8yHigKPuYCwBvXh8dQEtdzbj16o4LuORAgJEAgg3s3PHigVUI_liI34_____wFgyYbtiISk7A-gAaLbu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHH120VfdSbig_5GL-gPqVQcbp21wb10mTMAFBaAGJoAHxqREkAcB4BLt6Ky_-aDQzl8&sig=AOD64_3i1218xWZz8CNLsHA1iBXf80is5Q&ctype=5&ved=0CFAQ-hIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock"><img alt="Sonic Boom Alarm <b>Clock</b>" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQ_pzvXY2IQBc1KXnWQEG5YoUKggOo-RCbaJ1hLnw7FUWQ3v3MbFnfpCQGOjR0KPv-3zixPpg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$64.95</b></div><div><cite>Enablemart</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CeO3qSwPpUrLhD8yHigKPuYCwBvXh8dQEtdzbj16o4LuORAgJEAgg3s3PHigVUI_liI34_____wFgyYbtiISk7A-gAaLbu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHH120VfdSbig_5GL-gPqVQcbp21wb10mTMAFBaAGJoAHxqREkAcB4BLt6Ky_-aDQzl8&sig=AOD64_3i1218xWZz8CNLsHA1iBXf80is5Q&ctype=5&ved=0CFEQ-RIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock">Sonic Boom Alarm <b>Clock</b></a></h3><div>Wake up to any combination of loud, pulsating audio alarm, <b>flashing</b> lights, or a shaking bed (vibrator sold separately).</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CFMQ8gIwDzgB"><img alt="Bellman &amp; Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b>" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQSK-uSpDUafYWb9d9u45QufjMxHyhm2t8Bgly8lujEmlkA1_iWQhmBfZGvJFScP52d_J0vvg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$69</b></div><div>from 3 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CFQQ8wIwDzgB">Bellman & Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b></a></h3><div>The Bellman Hearing Impaired Alarm <b>Clocks</b> from Bellman & Symfon includes a powerful bed shaker and a built-in audible alarm that increases in sound volume, so you can wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CVaEmSwPpUrLhD8yHigKPuYCwBqrntsMC6tfY1D2Shoy7zgEICRAJIN7Nzx4oFVCt-qzxB2DJhu2IhKTsD6ABwPWq_wPIAQeqBCVP0GN78mZu3YZ4g6ccCj6LVN1JuKD_kYv6A-pVBxunbXBvbwJTwAUFoAYmgAeoilWQBwHgEtzz99zfhJD7xQE&sig=AOD64_2JWPtQIhZvAq65h0jE6-0fY3n2Kg&ctype=5&ved=0CFYQ-hIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla"><img alt="Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSXYhldgUtHFbvWYM8YZe9kTl5E4o4lj-D3XwrAq0BKYGV_CFNjKdV4Iqyl&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50.95</b></div><div><cite>Active Forever Medical Equipment</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CVaEmSwPpUrLhD8yHigKPuYCwBqrntsMC6tfY1D2Shoy7zgEICRAJIN7Nzx4oFVCt-qzxB2DJhu2IhKTsD6ABwPWq_wPIAQeqBCVP0GN78mZu3YZ4g6ccCj6LVN1JuKD_kYv6A-pVBxunbXBvbwJTwAUFoAYmgAeoilWQBwHgEtzz99zfhJD7xQE&sig=AOD64_2JWPtQIhZvAq65h0jE6-0fY3n2Kg&ctype=5&ved=0CFcQ-RIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla">Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)</a></h3><div>Loud Alarm <b>Clock</b> the Sonic Boom Alarm <b>Clock</b> SA-SB1000 Multi-Functional Sonic Boom Alarm <b>Clock</b> that Alerts You With <b>Flashing</b> Light and Loud Variable Tone. Guaranteed to wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C9PRZSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEAog3s3PHigVUOuixfL9_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BKj_Zyn7bul_ws&sig=AOD64_1VKcUDxPP8Ob9_FSK3ME3ARp2l9g&ctype=5&ved=0CFkQ-hIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSfsi8FSeqpn7eF6O8qGTylxWOna8ny4nKjrxPATk4k69ymNUmUZ_0YpZA6JCC975XPqmqJuQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$72.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C9PRZSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEAog3s3PHigVUOuixfL9_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BKj_Zyn7bul_ws&sig=AOD64_1VKcUDxPP8Ob9_FSK3ME3ARp2l9g&ctype=5&ved=0CFoQ-RIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator</a></h3><div>The Amplicom TCL 100 Analog Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has great features for the <b>deaf</b> and hard of hearing Its a handy functional alarm ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CNdGbSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEAsg3s3PHigVUJyj9YT7_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BLv0e6TzYb0z_wB&sig=AOD64_1Z5gPmF19_kA_txlRfvyC5EpsA1Q&ctype=5&ved=0CFwQ-hIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcS_VxkA0RX-i4tEvGA5ETLhCPPp4cqf0tsXQ4V6sVwNXBHTof9r_fgSWQndMeYp2wfLfBbNSw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$92.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CNdGbSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEAsg3s3PHigVUJyj9YT7_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BLv0e6TzYb0z_wB&sig=AOD64_1Z5gPmF19_kA_txlRfvyC5EpsA1Q&ctype=5&ved=0CF0Q-RIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator</a></h3><div>The Amplicom TCL 200 Talking Digital Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has features for the <b>deaf</b> and hard of hearing as well as those with low ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CtAciSwPpUrLhD8yHigKPuYCwBqOSxLUEs9L32Febm92kVAgJEAwg3s3PHigVUIWo-438_____wFgyYbtiISk7A-gAe2V0NwDyAEHqgQmT9Bje_Jmbt2GeIOnHCMLuVbdSbig_5GL-gPqVQcbp21wb3AbyhDABQWgBiaAB_vpryOQBwHgErPE_LCQ_JftOg&sig=AOD64_0aGQ3ovuAmA7KIHZEtgDhzM7KrVg&ctype=5&ved=0CF8Q-hIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html"><img alt="Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQRN7SYbOpvNAeNtPLKJ8Dok-TCZObjyMJrKeKiGCzQHx_L2iPFy4ptgyloAxaT33vsGrA80Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$126.99</b></div><div><cite>i-Market</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CtAciSwPpUrLhD8yHigKPuYCwBqOSxLUEs9L32Febm92kVAgJEAwg3s3PHigVUIWo-438_____wFgyYbtiISk7A-gAe2V0NwDyAEHqgQmT9Bje_Jmbt2GeIOnHCMLuVbdSbig_5GL-gPqVQcbp21wb3AbyhDABQWgBiaAB_vpryOQBwHgErPE_LCQ_JftOg&sig=AOD64_0aGQ3ovuAmA7KIHZEtgDhzM7KrVg&ctype=5&ved=0CGAQ-RIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html">Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ...</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss. The AL10 alerts you to telephone calls and the doorbell, and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CCk4xSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEA0g3s3PHigVUNzewYD______wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BK935fB3pOmxb4B&sig=AOD64_2FTBFWlDyWDhlRszI6yuSj5PccHQ&ctype=5&ved=0CGIQ-hIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTmfQbgsh5pYuItTp2o3iPP_zxvwRlnVZAthCZv3mcHBnw5GAUg0h_fCv-MjiRZqT9KQz35yw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$174.45</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CCk4xSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEA0g3s3PHigVUNzewYD______wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BK935fB3pOmxb4B&sig=AOD64_2FTBFWlDyWDhlRszI6yuSj5PccHQ&ctype=5&ved=0CGMQ-RIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss The AL10 alerts you to telephone calls and the doorbell and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CHQYkSwPpUrLhD8yHigKPuYCwBuzS_cwFtP-t8XCM_dyrSwgJEA4g3s3PHigVUL_hkZ37_____wFgyYbtiISk7A-gAZTkqdsDyAEHqgQmT9Bje_Jmbt2GeIOnHGwcgUfdSbig_5GL-gPqVQcbp21wbwdqmxfABQWgBiaAB9Sb1iSQBwHgEsXYu9CL-KXHIQ&sig=AOD64_0kf1XugRzcKj61Up9UZhDrdfLrhQ&ctype=5&ved=0CGUQ-hIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine"><img alt="Safe Awake" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQlFMnAUaTCBxfZL3Iil9l7vKxfwTh8VtMV3vcv-yAUYrmkXd4p8Xq9MxgnjqrEH1VvBfqHwA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$248.99</b></div><div><cite>LibertyHealthSupply.com</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CHQYkSwPpUrLhD8yHigKPuYCwBuzS_cwFtP-t8XCM_dyrSwgJEA4g3s3PHigVUL_hkZ37_____wFgyYbtiISk7A-gAZTkqdsDyAEHqgQmT9Bje_Jmbt2GeIOnHGwcgUfdSbig_5GL-gPqVQcbp21wbwdqmxfABQWgBiaAB9Sb1iSQBwHgEsXYu9CL-KXHIQ&sig=AOD64_0kf1XugRzcKj61Up9UZhDrdfLrhQ&ctype=5&ved=0CGYQ-RIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine">Safe Awake</a></h3><div>Sleep peacefully while feeling confident that you will wake up when your T3 smoke detector is activated. The SafeAwake Fire Alarm Aid works with existing smoke detectors to ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CmFWPSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEA8g3s3PHigVUN6gqMADYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASncPWgP7Ln8sq&sig=AOD64_3WYKyfnOumZf68CG_hgnR5syXD0A&ctype=5&ved=0CGgQ-hIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Silver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQ9nt6QSin-wUy7cGzlHisx5BtMapGV8ftU__80yJzy5ytpvUApjMlGTzYoO2HsfQ8fgSRtjA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CmFWPSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEA8g3s3PHigVUN6gqMADYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASncPWgP7Ln8sq&sig=AOD64_3WYKyfnOumZf68CG_hgnR5syXD0A&ctype=5&ved=0CGkQ-RIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Silver</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C8jk0SwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBAg3s3PHigVUNrS1tH4_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BKPpduLtofl9wo&sig=AOD64_3V125N57_rSmwxAUlcLysF8Ecpzw&ctype=5&ved=0CGsQ-hIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Black" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQFIuqrmM8t1rb1N9M83VpgT4YSXw9lKb7Qx-1VaUNwkPp9waZ_h4mWiRe6ztWWAvIhvfa54Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C8jk0SwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBAg3s3PHigVUNrS1tH4_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BKPpduLtofl9wo&sig=AOD64_3V125N57_rSmwxAUlcLysF8Ecpzw&ctype=5&ved=0CGwQ-RIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Black</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CrbFkSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBEg3s3PHigVUIWR9PYFYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeAS4vrMvtK_xJku&sig=AOD64_2XgizSt0FvzymGEE8jG_Lk_BcqRw&ctype=5&ved=0CG4Q-hIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Multi Station Digital <b>Timer</b> 95dB" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcQjREB6LbyRnyLZiXIGDvLLK5fZsW19D56Q9m14wZrGSrwJF2Md8Nb6hysQzZXs5GfDbk1Kdw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$58.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CrbFkSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBEg3s3PHigVUIWR9PYFYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeAS4vrMvtK_xJku&sig=AOD64_2XgizSt0FvzymGEE8jG_Lk_BcqRw&ctype=5&ved=0CG8Q-RIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Multi Station Digital <b>Timer</b> 95dB</a></h3><div>Features 4 different <b>timer</b> stations that can be used independently or simultaneously a large 3 x 3 4 station LCD and bright <b>flashing</b> lights to allow for easy viewing With four ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHEQ8gIwGTgB"><img alt="Sunny and Her Cochlear Implants [Book]" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTyLHe1kZklsrS3t1d6ezxpjluIjS2AULbwXMCdMI5AyaLSDddijck0Iiey&usqp=CAE"/></a></div><div class="psliprice"><div><b>$15</b></div><div>from 2 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHIQ8wIwGTgB">Sunny and Her Cochlear Implants [Book]</a></h3><div>Follow Sunny as she lives her life as a <b>deaf</b> child, in a hearing world, with hearing aids. Then, her life changes when her aids no longer help - but there is a solution. Sunny ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHQQ8gIwGjgB"><img alt="Sonic Alert BL300 Sonic Blink Strobe Receiver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRwGvEWUne92eu8Ql2HWBIRJTkToqdqXqu7vXCJJ7Dx-webfYYYDnNLsPJmJt1PvH8XQbgB8w&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHUQ8wIwGjgB">Sonic Alert BL300 Sonic Blink Strobe Receiver</a></h3><div>Sonic Blink Remote Receiver The Sonic Alert Sonic Blink BL 300 is the latest compact receiver and features a built-in, high intensity strobe light for signaling. The strobe ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHcQ8gIwGzgB"><img alt="Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRHSIss-eYy_3dfWYZQtly7TsTeDxzJdBbutz46-0S26LNrUNQ1MSBgVOpf31i_Gxr2SCahnA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$25</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CHgQ8wIwGzgB">Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler</a></h3><div>The Sonic Ring Jr TR50 telephone signaler alerts you that your telephone is ringing by <b>flashing</b> a lamp on and off automatically. Great for the hard of hearing or noisy or quiet ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CNbvaSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBIg3s3PHigVUJ261uH5_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BLR2a_uoprgpyo&sig=AOD64_0pru8RksHRrDOBPw-q_ZXhqvRHrA&ctype=5&ved=0CHoQ-hIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Bellman Visit Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcTe_4Z0Ld1AHL5UBL2xHXXWRwMSzE_A1J3Hv2ReKp_gSgHmZpkyzMgfeZxm55W0Ttj5gGfmFQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$29.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CNbvaSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBIg3s3PHigVUJ261uH5_____wFgyYbtiISk7A-gAZOyu_8DyAEHqgQlT9Bje_Jmbt2GeIOnHG5zulzdSbig_5GL-gPqVQcbp21wb05PTMAFBaAGJoAH1c1EkAcB4BLR2a_uoprgpyo&sig=AOD64_0pru8RksHRrDOBPw-q_ZXhqvRHrA&ctype=5&ved=0CHsQ-RIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Bellman Visit Bed Shaker</a></h3><div>Simply connect the Bellman Visit Bed Shaker to any of the receivers in the Bellman system and place it under your pillow or mattress When it receives a signal it will vibrate ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CjetoSwPpUrLhD8yHigKPuYCwBoHpwdIE6ZiF4n6Jq9-v2QEICRATIN7Nzx4oFVDa4oniB2DJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BK7rOev9oeV9vgB&sig=AOD64_2t6MEyeWB774CCJ8CJDu2_Zg8TYA&ctype=5&ved=0CH0Q-hIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla"><img alt="Silent Call Midland Noaa Weather Alert Radio W/strobe" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ417sm7xj30kUnxHVv-8YBV1IgH4bCXfLnpAr1a8O3Qw4OYH1_v7ZtWJ21b4qgN2mbQ6ZdAA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$99.50</b></div><div><cite>eBay - myheargear</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CjetoSwPpUrLhD8yHigKPuYCwBoHpwdIE6ZiF4n6Jq9-v2QEICRATIN7Nzx4oFVDa4oniB2DJhu2IhKTsD8gBB6oEJk_QY3vyZm7dhniDpxxZZtxm3Um4oP-Ri_oD6lUHG6dtcG9Iar4nwAUFoAYmgAfbgI4VkAcB4BK7rOev9oeV9vgB&sig=AOD64_2t6MEyeWB774CCJ8CJDu2_Zg8TYA&ctype=5&ved=0CH4Q-RIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla">Silent Call Midland Noaa Weather Alert Radio W/strobe</a></h3><div>SquareTrade AP6.0 SILENT CALL MIDLAND NOAA EMERGENCY WEATHER ALERT RADIO WITH <b>FLASHING</b> STROBE LIGHT AND VOICE, SIREN, TONE ALERT-FOR <b>DEAF</b>, HEARING IMPAIRED A Weather Alert ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CZQuwSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBQg3s3PHigVUIu-15ECYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASybuvt9v86NGyAQ&sig=AOD64_2EgHC_GL6YVSnUsuch7HOGJt3HEA&ctype=5&ved=0CIABEPoSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL11 Doorbell and Phone System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcS4tFb_Aj_GFdb9JsQJNNlbOulD5NKN9drL6tzPfn9nvY-ByIRbNXSncZn1k-lNdqm1EhW4Ng&usqp=CAE"/></a></div><div class="psliprice"><div><b>$79.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CZQuwSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBQg3s3PHigVUIu-15ECYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASybuvt9v86NGyAQ&sig=AOD64_2EgHC_GL6YVSnUsuch7HOGJt3HEA&ctype=5&ved=0CIEBEPkSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL11 Doorbell and Phone System</a></h3><div>The Clarity AlertMaster AL11 Doorbell and Telephone System is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss It gives you visual alerts of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=Cz22eSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBUg3s3PHigVUMnK2NsBYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASy4K4zM6D7qi2AQ&sig=AOD64_2q8Civ-Rh2kK9ZPs8-KjzomJjXug&ctype=5&ved=0CIMBEPoSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Pronto 40 Talking 40 cell Braille Organizer" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDLHqhj8wOwm9UCNeisaJVkyVcEM4kGEaY3n5E1hJxsW-iIdWoHF2ua4xA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$7,495.00</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=Cz22eSwPpUrLhD8yHigKPuYCwBvbfoJcEppaoki7untiVSAgJEBUg3s3PHigVUMnK2NsBYMmG7YiEpOwPoAGTsrv_A8gBB6oEJU_QY3vyZm7dhniDpxxuc7pc3Um4oP-Ri_oD6lUHG6dtcG9OT0zABQWgBiaAB9XNRJAHAeASy4K4zM6D7qi2AQ&sig=AOD64_2q8Civ-Rh2kK9ZPs8-KjzomJjXug&ctype=5&ved=0CIQBEPkSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Pronto 40 Talking 40 cell Braille Organizer</a></h3><div>A talking electronic organizer with interchangeable Braille and standard QWERTY keyboards the Pronto 40 offers many helpful personal organization features like note taking ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CIYBEPICMCA4AQ"><img alt="Clarity 52512 AlertMaster AL12 Visual Alert System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQlz_YQlNzFy53tYttIHm0lEF38R9U0TeHFVRhdI89HzKC-fl72NdeiQS6ncUmHE_rX-LaK_g&usqp=CAE"/></a></div><div class="psliprice"><div><b>$45</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CIcBEPMCMCA4AQ">Clarity 52512 AlertMaster AL12 Visual Alert System</a></h3><div>Clarity AlertMaster visual alert system Wirelessly connects to remote accessory units (sold separately) Bright - <b>flashing</b> red alert light Phone call visual alert indicator ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CIkBEPICMCE4AQ"><img alt="Clarity 52510.000 AlertMaster AL10 Visual Alert System" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQljpTpLG-JUQZgEKzVABpjWkanEYL5HpwQC3HojD0uFme2jev-ly-x2nD06RpIp1vUM8BdYg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$121</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CIoBEPMCMCE4AQ">Clarity 52510.000 AlertMaster AL10 Visual Alert System</a></h3><div>The Clarity 52510.000 Alert10 Home Notification System visually alerts you to visitors, telephone calls, and alarm <b>clock</b> functions. It also monitors the specific sounds made by ...</div></div><div style="clear:both"></div></div></li>,
<li class="taf"><h3><a href="/aclk?sa=l&ai=CZ7RnSwPpUrLhD8yHigKPuYCwBr7-pJgEppz60xSXgb17CAMQASDezc8eKANQn82E4AdgyYbtiISk7A-gAZOyu_8DyAEBqgQnT9Az9et-V-0HQoPvHOEZffemj65x0nhOQFclaYy5ymgAeTuA3v0fgAfVzUSQBwE&sig=AOD64_2fw4XS1HzT-V7pHi_NKZZdJuSwNw&ved=0CI0BENEMOAE&adurl=http://www.maxiaids.com/categories/80/Alarm-Clocks.html" id="pa1" style="zoom:1">Alarm <b>Clocks</b> for the <b>Deaf</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.maxiaids.com/Alarm-<b>Clocks</b>-<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CI4BEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CJABEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">maxiaids.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:-1px"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=maxiaids.com">49 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Vibrating Alarm <b>Clocks</b> for Hearing Impaired - On Sale, Big Selection!</span><div class="osl"><a href="/aclk?sa=l&ai=CP5-ISwPpUrLhD8yHigKPuYCwBr7-pJgEppz60xSXgb17CAMQASDezc8eKANQyMa0vPn_____AWDJhu2IhKTsD6ABk7K7_wPIAQGqBCdP0DP1635X7QdCg-8c4Rl996aPrnHSeE5AVyVpjLnKaAB5O4De_R_SBgkQ5nsYjrsPKAGAB9XNRJAHAQ&sig=AOD64_23nrCQ9A4deLH5IKuv9LICvUM0lQ&ctype=4&ved=0CJQBEMIFKAA4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D6%26idstore%3D1%26category%3DLow-Vision-Products">Low Vision Products</a> - <a href="/aclk?sa=l&ai=CxGMwSwPpUrLhD8yHigKPuYCwBr7-pJgEppz60xSXgb17CAMQASDezc8eKANQpcWQRGDJhu2IhKTsD6ABk7K7_wPIAQGqBCdP0DP1635X7QdCg-8c4Rl996aPrnHSeE5AVyVpjLnKaAB5O4De_R_SBgkQ5nsYnrkPKAGAB9XNRJAHAQ&sig=AOD64_2UxuW53uuQr67_1udFLg0inRqBEw&ctype=4&ved=0CJUBEMIFKAE4AQ&adurl=http://www.maxiaids.com/store/ProdIndex.asp%3Fidstore%3D1">Vision</a> - <a href="/aclk?sa=l&ai=C_g0ySwPpUrLhD8yHigKPuYCwBr7-pJgEppz60xSXgb17CAMQASDezc8eKANQ_sDqkQZgyYbtiISk7A-gAZOyu_8DyAEBqgQnT9Az9et-V-0HQoPvHOEZffemj65x0nhOQFclaYy5ymgAeTuA3v0f0gYJEOZ7GO6-DygBgAfVzUSQBwE&sig=AOD64_3bgp6dcWfI9v1DXcqwayBOw9cNbA&ctype=4&ved=0CJYBEMIFKAI4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D103%26idstore%3D6%26category%3DLow-Vision-Software">Low Vision Software</a> - <a href="/aclk?sa=l&ai=CNlmQSwPpUrLhD8yHigKPuYCwBr7-pJgEppz60xSXgb17CAMQASDezc8eKANQubuCdGDJhu2IhKTsD6ABk7K7_wPIAQGqBCdP0DP1635X7QdCg-8c4Rl996aPrnHSeE5AVyVpjLnKaAB5O4De_R_SBgkQ5nsY9r0PKAGAB9XNRJAHAQ&sig=AOD64_1v_vIVKVzVc77uClKVAhvXgbnwzg&ctype=4&ved=0CJcBEMIFKAM4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D109%26idstore%3D1%26category%3DLow-Vision-Telephones">Low Vision Telephones</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CJABEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li>,
<li class="tam"><h3><a href="/aclk?sa=L&ai=CNNiASwPpUrLhD8yHigKPuYCwBqurqeACu964oH7_2tROCAMQAiDezc8eKANQ_4PAvAJgyYbtiISk7A_IAQGqBCRP0AOxzH5U7QdCg6ccS1uDN91JuKD_kYv6A-odAbPKbVPgcbCAB4v9qjWQBwE&sig=AOD64_0_ku5M5JPIIb536_BseBifJJ2Cnw&ved=0CJkBENEMOAE&adurl=http://www.amazon.com/s/%3Fie%3DUTF8%26keywords%3Ddeaf%2Bclock%26tag%3Dgooghydr-20%26index%3Daps%26hvadid%3D33842953555%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D11895679451924079153%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc%26ref%3Dpd_sl_3la6dvvrux_b" id="pa2" style="zoom:1"><b>Deaf Clock</b> at Amazon - Low Prices on <b>Deaf clock</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.amazon.com/Home</cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CJoBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CJwBEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">amazon.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:-1px"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=amazon.com&mrqs=1">364 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Free Shipping on Qualified Orders. </span><div class="osl"><a href="/aclk?sa=L&ai=CIXFOSwPpUrLhD8yHigKPuYCwBqurqeACu964oH7_2tROCAMQAiDezc8eKANQvNq4if7_____AWDJhu2IhKTsD8gBAaoEJE_QA7HMflTtB0KDpxxLW4M33Um4oP-Ri_oD6h0Bs8ptU-BxsNIGCxCLn1QYy7bWBygBgAeL_ao1kAcB&sig=AOD64_3ltxn-PdesvOndE-YU-5337Zsslw&ctype=4&ved=0CKABEMIFKAA4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D510106%26ext%3D470-1523%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D7114863132143181692%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Vacuums and Floor Care</a> - <a href="/aclk?sa=L&ai=Cn_SPSwPpUrLhD8yHigKPuYCwBqurqeACu964oH7_2tROCAMQAiDezc8eKANQ1vav_fn_____AWDJhu2IhKTsD8gBAaoEJE_QA7HMflTtB0KDpxxLW4M33Um4oP-Ri_oD6h0Bs8ptU-BxsNIGCxCLn1QYq7rWBygBgAeL_ao1kAcB&sig=AOD64_0jEshqBBULEihlZExfQX9BpHnBAg&ctype=4&ved=0CKEBEMIFKAE4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D289913%26ext%3D470-1518%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D1945956192761516095%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Small Appliances</a> - <a href="/aclk?sa=L&ai=CHURESwPpUrLhD8yHigKPuYCwBqurqeACu964oH7_2tROCAMQAiDezc8eKANQ9cLQmQJgyYbtiISk7A_IAQGqBCRP0AOxzH5U7QdCg6ccS1uDN91JuKD_kYv6A-odAbPKbVPgcbDSBgsQi59UGNO11gcoAYAHi_2qNZAHAQ&sig=AOD64_0yOe1g7xp94BoUp9_eT85GFF-InQ&ctype=4&ved=0CKIBEMIFKAI4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D3206324011%26ext%3D470-1524%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D6854306771657258781%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Home Environment</a> - <a href="/aclk?sa=L&ai=CGLHsSwPpUrLhD8yHigKPuYCwBqurqeACu964oH7_2tROCAMQAiDezc8eKANQsdSW0gZgyYbtiISk7A_IAQGqBCRP0AOxzH5U7QdCg6ccS1uDN91JuKD_kYv6A-odAbPKbVPgcbDSBgsQi59UGMO31gcoAYAHi_2qNZAHAQ&sig=AOD64_2MS_w4DG2SG-ZyTBkkLc2p7oGHrA&ctype=4&ved=0CKMBEMIFKAM4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D1063252%26ext%3D470-1525%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D382365928931105831%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Bedding</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CJwBEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li>,
<li class="tal"><h3><a href="/aclk?sa=L&ai=CeOVKSwPpUrLhD8yHigKPuYCwBoOF7JMG89zxqy28oKeEBggDEAMg3s3PHigDUPDt19z5_____wFgyYbtiISk7A_IAQGqBChP0AOXxn5V7QdCg-8c4Rl92qO6oXHSeE5AVyVpjLnKaAJ5O4CYvIk5gAe7jYYfkAcB&sig=AOD64_05cjPSelL7LbNAFtYZCsHLHzci4w&ved=0CKUBENEMOAE&adurl=http://www.info.com/clocks%2520for%2520deaf%3Fcb%3D36%26q_csr%3D1%26qnet%3Dg%26q_mt%3Db%26q_loc%3DS%26q_ad%3D12085609059%26qsite%3D%26cmp%3D4643" id="pa3" style="zoom:1"><b>Clocks</b> For <b>Deaf</b> Info</a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.info.com/<b>Clocks</b>For<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CKYBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CKgBEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li></ul></div></div></div><span class="ac">Get Info On <b>Clocks</b> For <b>Deaf</b>. Access 10 Search Engines At Once.</span><div class="soc"><a href="/url?q=https://plus.google.com/116287553587609998453&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CKoBEPIdOAE&usg=AFQjCNGgJ8CR6SlMptj0VNYfMmEfWb1Xwg">Info.com</a> has 135 followers on Google+</div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=SwPpUrXbDcjzoASJwICoCw&ved=0CKgBEIETOAE&usg=AFQjCNHlZ6EmnEXIH9EfGIOp74fshBwuyg" target="_blank">Why this ad?</a></li>]
In [43]:
bb.findAll('li')
Out[43]:
[<li class="gbt"><a class="gbzt" href="https://plus.google.com/?gpsrc=ogpy0&tab=fX" id="gb_119" onclick="gbar.logger.il(1,{t:119});"><span class="gbtb2"></span><span class="gbts">+You</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fw" id="gb_1" onclick="gbar.qs(this);gbar.logger.il(1,{t:1});"><span class="gbtb2"></span><span class="gbts">Search</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=fi" id="gb_2" onclick="gbar.qs(this);gbar.logger.il(1,{t:2});"><span class="gbtb2"></span><span class="gbts">Images</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://maps.google.com/maps?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fl" id="gb_8" onclick="gbar.qs(this);gbar.logger.il(1,{t:8});"><span class="gbtb2"></span><span class="gbts">Maps</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://play.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=f8" id="gb_78" onclick="gbar.qs(this);gbar.logger.il(1,{t:78});"><span class="gbtb2"></span><span class="gbts">Play</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.youtube.com/results?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=f1" id="gb_36" onclick="gbar.qs(this);gbar.logger.il(1,{t:36});"><span class="gbtb2"></span><span class="gbts">YouTube</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://news.google.com/nwshp?hl=en&tab=fn" id="gb_5" onclick="gbar.logger.il(1,{t:5});"><span class="gbtb2"></span><span class="gbts">News</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://mail.google.com/mail/?tab=fm" id="gb_23" onclick="gbar.logger.il(1,{t:23});"><span class="gbtb2"></span><span class="gbts">Gmail</span></a></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd" class="gbgt" href="http://www.google.com/intl/en/options/" id="gbztm" onclick="gbar.tg(event,this)"><span class="gbtb2"></span><span class="gbts gbtsa" id="gbztms"><span id="gbztms1">More</span><span class="gbma"></span></span></a><div aria-owner="gbztm" class="gbm" id="gbd"><div class="gbmc gbsb gbsbis" id="gbmmb"><ol class="gbmcc gbsbic" id="gbmm"><li class="gbmtc"><a class="gbmt" href="https://drive.google.com/?tab=fo" id="gb_25" onclick="gbar.logger.il(1,{t:25});">Drive</a></li><li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li><li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li><li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li><li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li><li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li><li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li><li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li></ol><div class="gbsbt"></div><div class="gbsbb"></div></div></div></li>,
<li class="gbmtc"><a class="gbmt" href="https://drive.google.com/?tab=fo" id="gb_25" onclick="gbar.logger.il(1,{t:25});">Drive</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li>,
<li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li>,
<li class="gbt"><a class="gbgt" href="https://accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/search%3Fstart%3D1%26num%3D100%26tbm%3Dshop%26query%3Ddeaf%2Bclock%2Bflash%26tbs%3Dp_ord:rv" id="gb_70" onclick="gbar.logger.il(9,{l:'i'})" target="_top"><span class="gbtb2"></span><span class="gbts" id="gbgs4"><span id="gbi4s1">Sign in</span></span></a></li>,
<li class="gbt gbtb"><span class="gbts"></span></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd5" class="gbgt" href="http://www.google.com/preferences?hl=en" id="gbg5" onclick="gbar.tg(event,this)" title="Options"><span class="gbtb2"></span><span class="gbts" id="gbgs5"><span id="gbi5"></span></span></a><div aria-owner="gbg5" class="gbm" id="gbd5"><div class="gbmc"><ol class="gbmcc" id="gbom"><li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li></ol></div></div></li>,
<li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li>,
<li class="sr__title sr__item">Price</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_max:35&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CA4QvSs4AQ">Up to $35</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:35,ppr_max:60&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CA8QvSs4AQ">$35 – $60</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:60,ppr_max:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBAQvSs4AQ">$60 – $100</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBEQvSs4AQ">Over $100</a></li>,
<li class="sr__title sr__item">Category</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,cat:4546&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBMQvSs4AQ">Alarm Clocks</a></li>,
<li class="sr__title sr__item">Seller</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6341274&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBUQvSs4AQ">eBay - esbuys</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6296724&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBYQvSs4AQ">eBay</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8175035&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBcQvSs4AQ">Walmart</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8740&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBgQvSs4AQ">Home Depot</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8455724&tbm=shop&q=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CBkQvSs4AQ">eBay - myheargear</a></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CB8Q8gIwADgB"><img alt="Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSy4iwMFVESfnhJiRPsyLj4J0BwhL10jDHo6Wv_nBEQCwdw7b4mvTBQlPe6AX2ibOak36sJbQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCAQ8wIwADgB">Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker</a></h3><div>Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker The new Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker AKA The Bomb Jr", has been designed for guys and girls of all ages on a mission and ...</div><a class="review-link" href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCEQ9AIwADgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">36 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCMQ8gIwATgB"><img alt="NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcRFdvDfefisMUEx03l6bxiABd1lR6U34_mR6JvFQh42MSiZ4MlJrg1D9NS7oRLoP7hYcLP_aQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$44</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCQQ8wIwATgB">NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White</a></h3><div>An ADA Compliant NuTone Door Chime Alert with <b>Flashing</b> Strobe can be used to notify the user by strobe light when someone is at the door. The receiver plugs into any AC outlet. ...</div><a class="review-link" href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCUQ9AIwATgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">5 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCcQ8gIwAjgB"><img alt="Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQt3S-okMPgXWWCovojcXTLZoNsYzygBFPgHrNwOCwdfm3WT8LPtMIjpahMTL3k2jLda44_mg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$31</b></div><div>from 10+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCgQ8wIwAjgB">Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker</a></h3><div>We dare you to sleep through this alarm <b>clock</b>. If the 113 dB adjustable tone and volume alarm don't wake you, the 12V bed shaker sure will. Stealth gray color with red controls ...</div><a class="review-link" href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCkQ9AIwAjgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCsQ8gIwAzgB"><img alt="Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRLxKOuwj0KDk28_tAo1POZFUNVc-XMfP-YGJ8X5aXjxDBYW3LNaPKFEKio5JV_3rpIp3N-CA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$30</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CCwQ8wIwAzgB">Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS</a></h3><div>Brand New . Features: Loud Alarm <b>Clock</b> w/ Super Shaker Bright Red Display Pulsating <b>Flashing</b> Alert Light Powerful 6-Volt Bed Shaker Loud 102db Adjustable Tone & Volume Control ...</div><a class="review-link" href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CC0Q9AIwAzgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CC8Q8gIwBDgB"><img alt="Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSm4I1ksmgB-W1iPbY-BwJeZehqup3lkbc1HuMEkugOgqu0Ybd3FUy7ROrGyUmLpVHa22iA-A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDAQ8wIwBDgB">Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)</a></h3><div>Sonic Alert SB1000ss Sonic Boom Loud Vibrating Alarm <b>Clock</b> w/ Built In Receiver The Sonic Boom Alarm <b>Clock</b> is a unique <b>clock</b> that is guaranteed to wake up even the heaviest ...</div><a class="review-link" href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDEQ9AIwBDgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDMQ8gIwBTgB"><img alt="Sonic Bomb Sonic Boom Sweetheart Alarm" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDiTvrT-gO3SR52ULMbGETxSx6ZT2xzRsqcTRhqWkzFWSNp0NDxA-2VdJc-52gavosKuqT2A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDQQ8wIwBTgB">Sonic Bomb Sonic Boom Sweetheart Alarm</a></h3><div>- Sonic Alert sweetheart alarm - Comes with powerful 12 volt bed shaker - Hi/low dimmer switch - Extra loud pulsating audio alarmwith a loud 113db adjustable tone and volume ...</div><a class="review-link" href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDUQ9AIwBTgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDcQ8gIwBjgB"><img alt="Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQG2D4lc3TbzAc-rjLUTYeeDOFCNgCoCj8n9EX4wK1iIr6RLxpedbaDkIp5CyrA3TvqiBd9rw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$90</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDgQ8wIwBjgB">Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b></a></h3><div>Built-in telephone signaler. 87 dB extra-loud alarm (with adjustable tone & volume control). 12V Super Shaker bed vibrating unit included. Built-in <b>flashing</b> alert lights. Alarm ...</div><a class="review-link" href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CDkQ9AIwBjgB#reviews"><div class="star"><div style="width:52px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=C0vowVgPpUsx0xNj5A5mQgIAPgenB0gTpmIXiftm0sbDZAQgJEAEg3s3PHigVUMHJuKv9_____wFgycb1hsijkBnIAQeqBCZP0EfakXDwWs51vAv1Xj8mq60gyMeOal1Is5pOSeM1I4E8YdqIL8AFBaAGJoAH24COFZAHAeAS1oyC9Z3HqcvwAQ&sig=AOD64_1Sz-yCA5Pe9oaI3IYo4ajDUWppmA&ctype=5&ved=0CDsQ-hIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ..." src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRpw3sbxfajAxPqnzetnT1Y47ccr35sf8ojB3XbAd4SepbZ86fd0Ak6ThPKFHiqXDdOCdFYOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$78.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=C0vowVgPpUsx0xNj5A5mQgIAPgenB0gTpmIXiftm0sbDZAQgJEAEg3s3PHigVUMHJuKv9_____wFgycb1hsijkBnIAQeqBCZP0EfakXDwWs51vAv1Xj8mq60gyMeOal1Is5pOSeM1I4E8YdqIL8AFBaAGJoAH24COFZAHAeAS1oyC9Z3HqcvwAQ&sig=AOD64_1Sz-yCA5Pe9oaI3IYo4ajDUWppmA&ctype=5&ved=0CDwQ-RIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock Flashing</b> Light/Lamp Visual/Vibrating ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CajDMVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRACIN7Nzx4oFVCW_N6yBGDJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BLiseHLp63KvkU&sig=AOD64_3jQ7iQTgJxNR3Dw7EecBYl7KLAhw&ctype=5&ved=0CD4Q-hIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcTCL4kG0LGnGsaGIu05pu3z239MuAwVIiX-UzTfDjpZewhPxm-l52attqzjBmuuCht694ZFzA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$74.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CajDMVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRACIN7Nzx4oFVCW_N6yBGDJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BLiseHLp63KvkU&sig=AOD64_3jQ7iQTgJxNR3Dw7EecBYl7KLAhw&ctype=5&ved=0CD8Q-RIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla">Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CE-U1VgPpUsx0xNj5A5mQgIAPgenB0gSx7s61kwHpl5bk4wEICRADIN7Nzx4oFVDZ2KY9YMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEtSclvLewuCaQQ&sig=AOD64_1OZF6oGn8qvBdnXxwRYPTV7WUkvA&ctype=5&ved=0CEEQ-hIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ1DZ03k7pJ14_Shnxdoko2xTFey0CTF7SlRezv7pmZTe1O-pWaCsIoYX3GDng4n5ekMHpmaw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$162.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CE-U1VgPpUsx0xNj5A5mQgIAPgenB0gSx7s61kwHpl5bk4wEICRADIN7Nzx4oFVDZ2KY9YMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEtSclvLewuCaQQ&sig=AOD64_1OZF6oGn8qvBdnXxwRYPTV7WUkvA&ctype=5&ved=0CEIQ-RIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock</b>/Sound/Door Bell Visual <b>Flashing</b> ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=C3r12VgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAEIN7Nzx4oFVCNyJfE-_____8BYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEu6ptpyp2_bGdg&sig=AOD64_2Qg60eRZxsVnadQXYB_mrOQAVu_g&ctype=5&ved=0CEQQ-hIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla"><img alt="Modern Retro Streamline Moderne Westclox &#39;moon Beam&#39; <b>Clock</b> - ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSIkdU-aNP22cYbWKCzCzB95n7KahncHCi3PwHwvSPIVqd0Zq0C8DPh6egL&usqp=CAE"/></a></div><div class="psliprice"><div><b>$33.99</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=C3r12VgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAEIN7Nzx4oFVCNyJfE-_____8BYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEu6ptpyp2_bGdg&sig=AOD64_2Qg60eRZxsVnadQXYB_mrOQAVu_g&ctype=5&ved=0CEUQ-RIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla">Modern Retro Streamline Moderne Westclox 'moon Beam' <b>Clock</b> - ...</a></h3><div>Live with the beauty of vintage design, without the headaches of vintage technology.This <b>clock</b> by Westclox is an exact replica of the famous 'Moon Beam' design... this one in ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CuU_HVgPpUsx0xNj5A5mQgIAPgenB0gSx7s61kwHpl5bk4wEICRAFIN7Nzx4oFVDLr-XR-f____8BYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEryv8uH7z5by5gE&sig=AOD64_0471MrnOpb8RdaCg4LLtGXrdlVXg&ctype=5&ved=0CEcQ-hIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ..." src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRFntVo9Lhl_PtBSLpYgnV8mUs1lFs44J2aAgnIvKbdN65wzzgDKI9LlTWPlLKCBuhjvL7xOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$53.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CuU_HVgPpUsx0xNj5A5mQgIAPgenB0gSx7s61kwHpl5bk4wEICRAFIN7Nzx4oFVDLr-XR-f____8BYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgEryv8uH7z5by5gE&sig=AOD64_0471MrnOpb8RdaCg4LLtGXrdlVXg&ctype=5&ved=0CEgQ-RIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Alert Boom Alarm LED Display <b>Clock</b>+Bed Shaker/Vibrator+ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CN0PUVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAGIN7Nzx4oFVCzjq7HBmDJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BLFoLO5q9qMhVQ&sig=AOD64_13xy8Po4NfJ0hSoUgDjcudDdgBfg&ctype=5&ved=0CEoQ-hIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSJUQFBD_JTSjYUJp1m8FKGOBvLAPdI-bc3-RX3xDY3ZmbVH3JxMY-kH8lNDO8-_h_qWMXU-Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$54.25</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CN0PUVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAGIN7Nzx4oFVCzjq7HBmDJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BLFoLO5q9qMhVQ&sig=AOD64_13xy8Po4NfJ0hSoUgDjcudDdgBfg&ctype=5&ved=0CEsQ-RIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ...</a></h3><div>Sonic Alert Sonic Boom SB1000 Alarm <b>Clock</b> w/ Lamp Flasher Sonic Alert's original alarm <b>clock</b>, with jack for optional bed shaker, on/off switch for controlling a lamp plugged ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=C8q3pVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAHIN7Nzx4oFVC4ruPsA2DJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BKs8sOG0YP0vSw&sig=AOD64_25BkgpAWvcDYy5oFaFYoIaafL8Gw&ctype=5&ved=0CE0Q-hIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Boom &quot;skull&quot; Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSOGrslAQx8vv9_aPV7gQtyS7wGa6syvU0d4IlxBQ37j3uRZuky2TbyWmMAfWUWuSNwv_fpQQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$56.95</b></div><div><cite>eBay - hear-world</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=C8q3pVgPpUsx0xNj5A5mQgIAPgenB0gS5hpnqhAHpqOiw4wEICRAHIN7Nzx4oFVC4ruPsA2DJxvWGyKOQGcgBB6oEJk_QR9qRcPBaznW8C_VePyarrSDIx45qXUizmk5J4zUjgTxh2ogvwAUFoAYmgAfbgI4VkAcB4BKs8sOG0YP0vSw&sig=AOD64_25BkgpAWvcDYy5oFaFYoIaafL8Gw&ctype=5&ved=0CE4Q-RIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla">Sonic Boom "skull" Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b></a></h3><div>The Sonic Boom SBS550bc alarm <b>clock</b> (also known as "The Skull") from Sonic Alert is designed for guys and girls who think outside the box. With red <b>flashing</b> eye sockets, a ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=Cz_HKVgPpUsx0xNj5A5mQgIAP9eHx1AS13NuPXqjgu45ECAkQCCDezc8eKBVQj-WIjfj_____AWDJxvWGyKOQGaABotu7_wPIAQeqBCVP0EfakXDwWs51vAv1ei8rmq0gyMeOal1Is5pOSeM1I4E8dJZ6wAUFoAYmgAfGpESQBwHgEu3orL_5oNDOXw&sig=AOD64_2irI5VifjIA3qfpkYAvX0ye8I9yA&ctype=5&ved=0CFAQ-hIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock"><img alt="Sonic Boom Alarm <b>Clock</b>" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQ_pzvXY2IQBc1KXnWQEG5YoUKggOo-RCbaJ1hLnw7FUWQ3v3MbFnfpCQGOjR0KPv-3zixPpg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$64.95</b></div><div><cite>Enablemart</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=Cz_HKVgPpUsx0xNj5A5mQgIAP9eHx1AS13NuPXqjgu45ECAkQCCDezc8eKBVQj-WIjfj_____AWDJxvWGyKOQGaABotu7_wPIAQeqBCVP0EfakXDwWs51vAv1ei8rmq0gyMeOal1Is5pOSeM1I4E8dJZ6wAUFoAYmgAfGpESQBwHgEu3orL_5oNDOXw&sig=AOD64_2irI5VifjIA3qfpkYAvX0ye8I9yA&ctype=5&ved=0CFEQ-RIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock">Sonic Boom Alarm <b>Clock</b></a></h3><div>Wake up to any combination of loud, pulsating audio alarm, <b>flashing</b> lights, or a shaking bed (vibrator sold separately).</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CFMQ8gIwDzgB"><img alt="Bellman &amp; Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b>" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQSK-uSpDUafYWb9d9u45QufjMxHyhm2t8Bgly8lujEmlkA1_iWQhmBfZGvJFScP52d_J0vvg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$69</b></div><div>from 3 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CFQQ8wIwDzgB">Bellman & Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b></a></h3><div>The Bellman Hearing Impaired Alarm <b>Clocks</b> from Bellman & Symfon includes a powerful bed shaker and a built-in audible alarm that increases in sound volume, so you can wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CTCwmVgPpUsx0xNj5A5mQgIAPque2wwLq19jUPZKGjLvOAQgJEAkg3s3PHigVUK36rPEHYMnG9YbIo5AZoAHA9ar_A8gBB6oEJU_QR9qRcPBaznW8C_UNZ3GZrSDIx45qXUizmk5J4zUjgTxGsmXABQWgBiaAB6iKVZAHAeAS3PP33N-EkPvFAQ&sig=AOD64_00S6wQmcmbJRcezDlkt7xE7ORCwg&ctype=5&ved=0CFYQ-hIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla"><img alt="Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSXYhldgUtHFbvWYM8YZe9kTl5E4o4lj-D3XwrAq0BKYGV_CFNjKdV4Iqyl&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50.95</b></div><div><cite>Active Forever Medical Equipment</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CTCwmVgPpUsx0xNj5A5mQgIAPque2wwLq19jUPZKGjLvOAQgJEAkg3s3PHigVUK36rPEHYMnG9YbIo5AZoAHA9ar_A8gBB6oEJU_QR9qRcPBaznW8C_UNZ3GZrSDIx45qXUizmk5J4zUjgTxGsmXABQWgBiaAB6iKVZAHAeAS3PP33N-EkPvFAQ&sig=AOD64_00S6wQmcmbJRcezDlkt7xE7ORCwg&ctype=5&ved=0CFcQ-RIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla">Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)</a></h3><div>Loud Alarm <b>Clock</b> the Sonic Boom Alarm <b>Clock</b> SA-SB1000 Multi-Functional Sonic Boom Alarm <b>Clock</b> that Alerts You With <b>Flashing</b> Light and Loud Variable Tone. Guaranteed to wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CBGCoVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQCiDezc8eKBVQ66LF8v3_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEqP9nKftu6X_Cw&sig=AOD64_1Mpon1g18BHEb4uQfgZmpWzrBAJw&ctype=5&ved=0CFkQ-hIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSfsi8FSeqpn7eF6O8qGTylxWOna8ny4nKjrxPATk4k69ymNUmUZ_0YpZA6JCC975XPqmqJuQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$72.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CBGCoVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQCiDezc8eKBVQ66LF8v3_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEqP9nKftu6X_Cw&sig=AOD64_1Mpon1g18BHEb4uQfgZmpWzrBAJw&ctype=5&ved=0CFoQ-RIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator</a></h3><div>The Amplicom TCL 100 Analog Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has great features for the <b>deaf</b> and hard of hearing Its a handy functional alarm ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CaUpLVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQCyDezc8eKBVQnKP1hPv_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEu_R7pPNhvTP_AE&sig=AOD64_0Q2yImO-phe4PnekwHOupB5YnD4w&ctype=5&ved=0CFwQ-hIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcS_VxkA0RX-i4tEvGA5ETLhCPPp4cqf0tsXQ4V6sVwNXBHTof9r_fgSWQndMeYp2wfLfBbNSw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$92.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CaUpLVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQCyDezc8eKBVQnKP1hPv_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEu_R7pPNhvTP_AE&sig=AOD64_0Q2yImO-phe4PnekwHOupB5YnD4w&ctype=5&ved=0CF0Q-RIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator</a></h3><div>The Amplicom TCL 200 Talking Digital Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has features for the <b>deaf</b> and hard of hearing as well as those with low ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CpvYHVgPpUsx0xNj5A5mQgIAPo5LEtQSz0vfYV5ub3aRUCAkQDCDezc8eKBVQhaj7jfz_____AWDJxvWGyKOQGaAB7ZXQ3APIAQeqBCZP0EfakXDwWs51vAv1JFJDm60gyMeOal1Is5pOSeM1I4E8Wav8GMAFBaAGJoAH--mvI5AHAeASs8T8sJD8l-06&sig=AOD64_06QF3HMR8ioafEM-InoBuWM-ogoA&ctype=5&ved=0CF8Q-hIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html"><img alt="Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQRN7SYbOpvNAeNtPLKJ8Dok-TCZObjyMJrKeKiGCzQHx_L2iPFy4ptgyloAxaT33vsGrA80Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$126.99</b></div><div><cite>i-Market</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CpvYHVgPpUsx0xNj5A5mQgIAPo5LEtQSz0vfYV5ub3aRUCAkQDCDezc8eKBVQhaj7jfz_____AWDJxvWGyKOQGaAB7ZXQ3APIAQeqBCZP0EfakXDwWs51vAv1JFJDm60gyMeOal1Is5pOSeM1I4E8Wav8GMAFBaAGJoAH--mvI5AHAeASs8T8sJD8l-06&sig=AOD64_06QF3HMR8ioafEM-InoBuWM-ogoA&ctype=5&ved=0CGAQ-RIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html">Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ...</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss. The AL10 alerts you to telephone calls and the doorbell, and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C1GfXVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQDSDezc8eKBVQ3N7BgP______AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEr3fl8Hek6bFvgE&sig=AOD64_2t6DRh0A2OcITKLA-JGUc9Bh8wfQ&ctype=5&ved=0CGIQ-hIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTmfQbgsh5pYuItTp2o3iPP_zxvwRlnVZAthCZv3mcHBnw5GAUg0h_fCv-MjiRZqT9KQz35yw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$174.45</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C1GfXVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQDSDezc8eKBVQ3N7BgP______AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEr3fl8Hek6bFvgE&sig=AOD64_2t6DRh0A2OcITKLA-JGUc9Bh8wfQ&ctype=5&ved=0CGMQ-RIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss The AL10 alerts you to telephone calls and the doorbell and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CDvlgVgPpUsx0xNj5A5mQgIAP7NL9zAW0_63xcIz93KtLCAkQDiDezc8eKBVQv-GRnfv_____AWDJxvWGyKOQGaABlOSp2wPIAQeqBCZP0EfakXDwWs51vAv1a0V7iq0gyMeOal1Is5pOSeM1I4E8LtqtH8AFBaAGJoAH1JvWJJAHAeASxdi70Iv4pcch&sig=AOD64_0UEh7mSu7wI0tQiUJrHgzFWszzWg&ctype=5&ved=0CGUQ-hIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine"><img alt="Safe Awake" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQlFMnAUaTCBxfZL3Iil9l7vKxfwTh8VtMV3vcv-yAUYrmkXd4p8Xq9MxgnjqrEH1VvBfqHwA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$248.99</b></div><div><cite>LibertyHealthSupply.com</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CDvlgVgPpUsx0xNj5A5mQgIAP7NL9zAW0_63xcIz93KtLCAkQDiDezc8eKBVQv-GRnfv_____AWDJxvWGyKOQGaABlOSp2wPIAQeqBCZP0EfakXDwWs51vAv1a0V7iq0gyMeOal1Is5pOSeM1I4E8LtqtH8AFBaAGJoAH1JvWJJAHAeASxdi70Iv4pcch&sig=AOD64_0UEh7mSu7wI0tQiUJrHgzFWszzWg&ctype=5&ved=0CGYQ-RIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine">Safe Awake</a></h3><div>Sleep peacefully while feeling confident that you will wake up when your T3 smoke detector is activated. The SafeAwake Fire Alarm Aid works with existing smoke detectors to ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CYHvCVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQDyDezc8eKBVQ3qCowANgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BKdw9aA_sufyyo&sig=AOD64_25Rd8gd01JAhSUGX7IYvZ1V6ZC-g&ctype=5&ved=0CGgQ-hIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Silver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQ9nt6QSin-wUy7cGzlHisx5BtMapGV8ftU__80yJzy5ytpvUApjMlGTzYoO2HsfQ8fgSRtjA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CYHvCVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQDyDezc8eKBVQ3qCowANgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BKdw9aA_sufyyo&sig=AOD64_25Rd8gd01JAhSUGX7IYvZ1V6ZC-g&ctype=5&ved=0CGkQ-RIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Silver</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CeetXVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQECDezc8eKBVQ2tLW0fj_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEo-l24u2h-X3Cg&sig=AOD64_0RUrH4d_zUrRbRuy4RGN_6YMUpzw&ctype=5&ved=0CGsQ-hIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Black" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQFIuqrmM8t1rb1N9M83VpgT4YSXw9lKb7Qx-1VaUNwkPp9waZ_h4mWiRe6ztWWAvIhvfa54Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CeetXVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQECDezc8eKBVQ2tLW0fj_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEo-l24u2h-X3Cg&sig=AOD64_0RUrH4d_zUrRbRuy4RGN_6YMUpzw&ctype=5&ved=0CGwQ-RIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Black</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C4UbkVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQESDezc8eKBVQhZH09gVgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLi-sy-0r_EmS4&sig=AOD64_31ho2B1rTnDeZzhehLW4nkgwyJEQ&ctype=5&ved=0CG4Q-hIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Multi Station Digital <b>Timer</b> 95dB" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcQjREB6LbyRnyLZiXIGDvLLK5fZsW19D56Q9m14wZrGSrwJF2Md8Nb6hysQzZXs5GfDbk1Kdw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$58.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C4UbkVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQESDezc8eKBVQhZH09gVgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLi-sy-0r_EmS4&sig=AOD64_31ho2B1rTnDeZzhehLW4nkgwyJEQ&ctype=5&ved=0CG8Q-RIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Multi Station Digital <b>Timer</b> 95dB</a></h3><div>Features 4 different <b>timer</b> stations that can be used independently or simultaneously a large 3 x 3 4 station LCD and bright <b>flashing</b> lights to allow for easy viewing With four ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHEQ8gIwGTgB"><img alt="Sunny and Her Cochlear Implants [Book]" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTyLHe1kZklsrS3t1d6ezxpjluIjS2AULbwXMCdMI5AyaLSDddijck0Iiey&usqp=CAE"/></a></div><div class="psliprice"><div><b>$15</b></div><div>from 2 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHIQ8wIwGTgB">Sunny and Her Cochlear Implants [Book]</a></h3><div>Follow Sunny as she lives her life as a <b>deaf</b> child, in a hearing world, with hearing aids. Then, her life changes when her aids no longer help - but there is a solution. Sunny ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHQQ8gIwGjgB"><img alt="Sonic Alert BL300 Sonic Blink Strobe Receiver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRwGvEWUne92eu8Ql2HWBIRJTkToqdqXqu7vXCJJ7Dx-webfYYYDnNLsPJmJt1PvH8XQbgB8w&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHUQ8wIwGjgB">Sonic Alert BL300 Sonic Blink Strobe Receiver</a></h3><div>Sonic Blink Remote Receiver The Sonic Alert Sonic Blink BL 300 is the latest compact receiver and features a built-in, high intensity strobe light for signaling. The strobe ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHcQ8gIwGzgB"><img alt="Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRHSIss-eYy_3dfWYZQtly7TsTeDxzJdBbutz46-0S26LNrUNQ1MSBgVOpf31i_Gxr2SCahnA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$25</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CHgQ8wIwGzgB">Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler</a></h3><div>The Sonic Ring Jr TR50 telephone signaler alerts you that your telephone is ringing by <b>flashing</b> a lamp on and off automatically. Great for the hard of hearing or noisy or quiet ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CEUo2VgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQEiDezc8eKBVQnbrW4fn_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEtHZr-6imuCnKg&sig=AOD64_1AUfnKMLUMpQT7OjFMx_d2jeDvmQ&ctype=5&ved=0CHoQ-hIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Bellman Visit Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcTe_4Z0Ld1AHL5UBL2xHXXWRwMSzE_A1J3Hv2ReKp_gSgHmZpkyzMgfeZxm55W0Ttj5gGfmFQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$29.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CEUo2VgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQEiDezc8eKBVQnbrW4fn_____AWDJxvWGyKOQGaABk7K7_wPIAQeqBCVP0EfakXDwWs51vAv1aSpAka0gyMeOal1Is5pOSeM1I4E8Z_96wAUFoAYmgAfVzUSQBwHgEtHZr-6imuCnKg&sig=AOD64_1AUfnKMLUMpQT7OjFMx_d2jeDvmQ&ctype=5&ved=0CHsQ-RIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Bellman Visit Bed Shaker</a></h3><div>Simply connect the Bellman Visit Bed Shaker to any of the receivers in the Bellman system and place it under your pillow or mattress When it receives a signal it will vibrate ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CP0zeVgPpUsx0xNj5A5mQgIAPgenB0gTpmIXifomr36_ZAQgJEBMg3s3PHigVUNriieIHYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgErus56_2h5X2-AE&sig=AOD64_0npZ_jjAK3dGop3jKc_u9G5APZyA&ctype=5&ved=0CH0Q-hIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla"><img alt="Silent Call Midland Noaa Weather Alert Radio W/strobe" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ417sm7xj30kUnxHVv-8YBV1IgH4bCXfLnpAr1a8O3Qw4OYH1_v7ZtWJ21b4qgN2mbQ6ZdAA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$99.50</b></div><div><cite>eBay - myheargear</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CP0zeVgPpUsx0xNj5A5mQgIAPgenB0gTpmIXifomr36_ZAQgJEBMg3s3PHigVUNriieIHYMnG9YbIo5AZyAEHqgQmT9BH2pFw8FrOdbwL9V4_JqutIMjHjmpdSLOaTknjNSOBPGHaiC_ABQWgBiaAB9uAjhWQBwHgErus56_2h5X2-AE&sig=AOD64_0npZ_jjAK3dGop3jKc_u9G5APZyA&ctype=5&ved=0CH4Q-RIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla">Silent Call Midland Noaa Weather Alert Radio W/strobe</a></h3><div>SquareTrade AP6.0 SILENT CALL MIDLAND NOAA EMERGENCY WEATHER ALERT RADIO WITH <b>FLASHING</b> STROBE LIGHT AND VOICE, SIREN, TONE ALERT-FOR <b>DEAF</b>, HEARING IMPAIRED A Weather Alert ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CT0yAVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQFCDezc8eKBVQi77XkQJgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLJu6-32_zo0bIB&sig=AOD64_0xGb8_b7PA3QrRy6yPBkAx2XE8WA&ctype=5&ved=0CIABEPoSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL11 Doorbell and Phone System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcS4tFb_Aj_GFdb9JsQJNNlbOulD5NKN9drL6tzPfn9nvY-ByIRbNXSncZn1k-lNdqm1EhW4Ng&usqp=CAE"/></a></div><div class="psliprice"><div><b>$79.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CT0yAVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQFCDezc8eKBVQi77XkQJgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLJu6-32_zo0bIB&sig=AOD64_0xGb8_b7PA3QrRy6yPBkAx2XE8WA&ctype=5&ved=0CIEBEPkSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL11 Doorbell and Phone System</a></h3><div>The Clarity AlertMaster AL11 Doorbell and Telephone System is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss It gives you visual alerts of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CvVSYVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQFSDezc8eKBVQycrY2wFgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLLgrjMzoPuqLYB&sig=AOD64_21s4RwynOblsCiJgpo2TnW-dwdag&ctype=5&ved=0CIMBEPoSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Pronto 40 Talking 40 cell Braille Organizer" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDLHqhj8wOwm9UCNeisaJVkyVcEM4kGEaY3n5E1hJxsW-iIdWoHF2ua4xA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$7,495.00</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CvVSYVgPpUsx0xNj5A5mQgIAPpoGlmAT2lpD0Lu6e2JVICAkQFSDezc8eKBVQycrY2wFgycb1hsijkBmgAZOyu_8DyAEHqgQlT9BH2pFw8FrOdbwL9WkqQJGtIMjHjmpdSLOaTknjNSOBPGf_esAFBaAGJoAH1c1EkAcB4BLLgrjMzoPuqLYB&sig=AOD64_21s4RwynOblsCiJgpo2TnW-dwdag&ctype=5&ved=0CIQBEPkSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Pronto 40 Talking 40 cell Braille Organizer</a></h3><div>A talking electronic organizer with interchangeable Braille and standard QWERTY keyboards the Pronto 40 offers many helpful personal organization features like note taking ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CIYBEPICMCA4AQ"><img alt="Clarity 52512 AlertMaster AL12 Visual Alert System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQlz_YQlNzFy53tYttIHm0lEF38R9U0TeHFVRhdI89HzKC-fl72NdeiQS6ncUmHE_rX-LaK_g&usqp=CAE"/></a></div><div class="psliprice"><div><b>$45</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CIcBEPMCMCA4AQ">Clarity 52512 AlertMaster AL12 Visual Alert System</a></h3><div>Clarity AlertMaster visual alert system Wirelessly connects to remote accessory units (sold separately) Bright - <b>flashing</b> red alert light Phone call visual alert indicator ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CIkBEPICMCE4AQ"><img alt="Clarity 52510.000 AlertMaster AL10 Visual Alert System" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQljpTpLG-JUQZgEKzVABpjWkanEYL5HpwQC3HojD0uFme2jev-ly-x2nD06RpIp1vUM8BdYg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$121</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=VQPpUuydPJGBogThwIKoDw&ved=0CIoBEPMCMCE4AQ">Clarity 52510.000 AlertMaster AL10 Visual Alert System</a></h3><div>The Clarity 52510.000 Alert10 Home Notification System visually alerts you to visitors, telephone calls, and alarm <b>clock</b> functions. It also monitors the specific sounds made by ...</div></div><div style="clear:both"></div></div></li>,
<li class="taf"><h3><a href="/aclk?sa=l&ai=CYyKCVgPpUsx0xNj5A5mQgIAPvv6kmASmnPrTFJeBvXsIAxABIN7Nzx4oA1CfzYTgB2DJxvWGyKOQGaABk7K7_wPIAQGqBCdP0GdmiWjJak9PvEP15kCHOtbm3hajg5jy51VywkFYJvEqEjDo9Z6AB9XNRJAHAQ&sig=AOD64_3e_n14pQ2Hb3T9PwjtdyqNoI3c3w&ved=0CI0BENEMOAE&adurl=http://www.maxiaids.com/categories/80/Alarm-Clocks.html" id="pa1" style="zoom:1">Alarm <b>Clocks</b> for the <b>Deaf</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.maxiaids.com/Alarm-<b>Clocks</b>-<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CI4BEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CJABEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">maxiaids.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:-1px"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=maxiaids.com">49 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Vibrating Alarm <b>Clocks</b> for Hearing Impaired - On Sale, Big Selection!</span><div class="osl"><a href="/aclk?sa=l&ai=CvaWcVgPpUsx0xNj5A5mQgIAPvv6kmASmnPrTFJeBvXsIAxABIN7Nzx4oA1CsiLDX______8BYMnG9YbIo5AZoAGTsrv_A8gBAaoEJ0_QZ2aJaMlqT0-8Q_XmQIc61ubeFqODmPLnVXLCQVgm8SoSMOj1ntIGCRDmexiutw8oAYAH1c1EkAcB&sig=AOD64_0NxsS7dOtWWVwWCQRrc6OBPQ4owQ&ctype=4&ved=0CJQBEMIFKAA4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D52%26idstore%3D1%26category%3DLow-Vision-Clocks">Low Vision Clocks</a> - <a href="/aclk?sa=l&ai=CPkWrVgPpUsx0xNj5A5mQgIAPvv6kmASmnPrTFJeBvXsIAxABIN7Nzx4oA1C0-czZA2DJxvWGyKOQGaABk7K7_wPIAQGqBCdP0GdmiWjJak9PvEP15kCHOtbm3hajg5jy51VywkFYJvEqEjDo9Z7SBgkQ5nsYlroPKAGAB9XNRJAHAQ&sig=AOD64_0RVDd-1V09Y2sS_PWZGoUFfMnLfg&ctype=4&ved=0CJUBEMIFKAE4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D54%26idstore%3D1%26category%3DLow-Vision-Watches">Low Vision Watches</a> - <a href="/aclk?sa=l&ai=CrhpdVgPpUsx0xNj5A5mQgIAPvv6kmASmnPrTFJeBvXsIAxABIN7Nzx4oA1DY5vKz_v____8BYMnG9YbIo5AZoAGTsrv_A8gBAaoEJ0_QZ2aJaMlqT0-8Q_XmQIc61ubeFqODmPLnVXLCQVgm8SoSMOj1ntIGCRDmexiGvA8oAYAH1c1EkAcB&sig=AOD64_1rPPau9rvuX_oVYvgRslbToT5Apw&ctype=4&ved=0CJYBEMIFKAI4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D271%26idstore%3D1%26category%3DWatches">Watches</a> - <a href="/aclk?sa=l&ai=Clh5sVgPpUsx0xNj5A5mQgIAPvv6kmASmnPrTFJeBvXsIAxABIN7Nzx4oA1DDqYC4______8BYMnG9YbIo5AZoAGTsrv_A8gBAaoEJ0_QZ2aJaMlqT0-8Q_XmQIc61ubeFqODmPLnVXLCQVgm8SoSMOj1ntIGCRDmexj-vA8oAYAH1c1EkAcB&sig=AOD64_13OcJhNGLfrKOBHvcXMwCm6qZeTg&ctype=4&ved=0CJcBEMIFKAM4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D180%26idstore%3D1%26category%3DCanes-for-the-Blind">Canes for the Blind</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CJABEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li>,
<li class="tam"><h3><a href="/aclk?sa=L&ai=Cuzd0VgPpUsx0xNj5A5mQgIAPq6up4AK73rigfv_a1E4IAxACIN7Nzx4oA1DUhpDbB2DJxvWGyKOQGcgBAaoEJE_QV0evaMpqT0-8C_VMAnn6rSDIx45qXUizmgZPS1gjorNYAIAHi_2qNZAHAQ&sig=AOD64_3_UwflAA6eXfqi2h7yM9ACdyR5MQ&ved=0CJkBENEMOAE&adurl=http://www.amazon.com/s/%3Fie%3DUTF8%26keywords%3Ddeaf%2Bclock%26tag%3Dgooghydr-20%26index%3Daps%26hvadid%3D33842953555%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D2778210751628741112%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc%26ref%3Dpd_sl_3la6dvvrux_b" id="pa2" style="zoom:1"><b>Deaf Clock</b> at Amazon - Low Prices on <b>Deaf clock</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.amazon.com/Home</cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CJoBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CJwBEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">amazon.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:-1px"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=amazon.com&mrqs=1">323 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Free Shipping on Qualified Orders. </span><div class="osl"><a href="/aclk?sa=L&ai=CY0-gVgPpUsx0xNj5A5mQgIAPq6up4AK73rigfv_a1E4IAxACIN7Nzx4oA1DJ8PHOBGDJxvWGyKOQGcgBAaoEJE_QV0evaMpqT0-8C_VMAnn6rSDIx45qXUizmgZPS1gjorNYANIGCxCLn1QYu7jWBygBgAeL_ao1kAcB&sig=AOD64_1SUW0HCoeizooJrWAc-FllNaPJiQ&ctype=4&ved=0CKABEMIFKAA4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D284507%26ext%3D470-1516%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D1514097732709358947%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Kitchen & Dining</a> - <a href="/aclk?sa=L&ai=CY_zEVgPpUsx0xNj5A5mQgIAPq6up4AK73rigfv_a1E4IAxACIN7Nzx4oA1D488DEBWDJxvWGyKOQGcgBAaoEJE_QV0evaMpqT0-8C_VMAnn6rSDIx45qXUizmgZPS1gjorNYANIGCxCLn1QYq7rWBygBgAeL_ao1kAcB&sig=AOD64_1H0IQ5Zxg-mHn7vrUEtfVlkV07gg&ctype=4&ved=0CKEBEMIFKAE4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D289913%26ext%3D470-1518%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D15029475661906848421%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Small Appliances</a> - <a href="/aclk?sa=L&ai=CyNQBVgPpUsx0xNj5A5mQgIAPq6up4AK73rigfv_a1E4IAxACIN7Nzx4oA1DBpLGp______8BYMnG9YbIo5AZyAEBqgQkT9BXR69oympPT7wL9UwCefqtIMjHjmpdSLOaBk9LWCOis1gA0gYLEIufVBjDt9YHKAGAB4v9qjWQBwE&sig=AOD64_2vM2zzIv_Lxe4O4tIoyFIxvIwZyg&ctype=4&ved=0CKIBEMIFKAI4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D1063252%26ext%3D470-1525%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D11312844281337085748%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Bedding</a> - <a href="/aclk?sa=L&ai=CJiETVgPpUsx0xNj5A5mQgIAPq6up4AK73rigfv_a1E4IAxACIN7Nzx4oA1Ctjsvl-_____8BYMnG9YbIo5AZyAEBqgQkT9BXR69oympPT7wL9UwCefqtIMjHjmpdSLOaBk9LWCOis1gA0gYLEIufVBjTtdYHKAGAB4v9qjWQBwE&sig=AOD64_1H8OhvF08uaarvT5SHe9fQudPH5A&ctype=4&ved=0CKMBEMIFKAM4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D3206324011%26ext%3D470-1524%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D9017863751824654505%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Home Environment</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CJwBEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li>,
<li class="tal"><h3><a href="/aclk?sa=L&ai=CH1CNVgPpUsx0xNj5A5mQgIAPg4Xskwbz3PGrLbygp4QGCAMQAyDezc8eKANQ8O3X3Pn_____AWDJxvWGyKOQGcgBAaoEKE_QV2WlaMtqT0-8Q_XmQIcX09PRFqODmPLnVXLCQVgm8yoSMK60CAOAB7uNhh-QBwE&sig=AOD64_0UGhVW6O0FxWeqH7kxViC5QeCudg&ved=0CKUBENEMOAE&adurl=http://www.info.com/clocks%2520for%2520deaf%3Fcb%3D36%26q_csr%3D1%26qnet%3Dg%26q_mt%3Db%26q_loc%3DS%26q_ad%3D12085609059%26qsite%3D%26cmp%3D4643" id="pa3" style="zoom:1"><b>Clocks</b> For <b>Deaf</b> Info</a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.info.com/<b>Clocks</b>For<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CKYBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CKgBEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li></ul></div></div></div><span class="ac">Get Info On <b>Clocks</b> For <b>Deaf</b>. Access 10 Search Engines At Once.</span><div class="soc"><a href="/url?q=https://plus.google.com/116287553587609998453&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CKoBEPIdOAE&usg=AFQjCNFtrakFb6FfFHbBU8ibyXsdGmaV3Q">Info.com</a> has 135 followers on Google+</div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=VQPpUuydPJGBogThwIKoDw&ved=0CKgBEIETOAE&usg=AFQjCNGddnYUkXnJUC1pj4OZKCgoPGuswA" target="_blank">Why this ad?</a></li>]
In [53]:
filename = os.path.join('/Users/thor/Google Drive/Shared/ms_otosense/slurps_test2',
'http{§§www.google.com§search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv.html')
In [54]:
bbb = BeautifulSoup(pfile.to.str(filename))
In [55]:
bbb.findAll('li')
Out[55]:
[<li class="gbt"><a class="gbzt" href="https://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fw" id="gb_1" onclick="gbar.qs(this);gbar.logger.il(1,{t:1});"><span class="gbtb2"></span><span class="gbts">Search</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=fi" id="gb_2" onclick="gbar.qs(this);gbar.logger.il(1,{t:2});"><span class="gbtb2"></span><span class="gbts">Images</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://maps.google.com/maps?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fl" id="gb_8" onclick="gbar.qs(this);gbar.logger.il(1,{t:8});"><span class="gbtb2"></span><span class="gbts">Maps</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://play.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=f8" id="gb_78" onclick="gbar.qs(this);gbar.logger.il(1,{t:78});"><span class="gbtb2"></span><span class="gbts">Play</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://www.youtube.com/results?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=f1" id="gb_36" onclick="gbar.qs(this);gbar.logger.il(1,{t:36});"><span class="gbtb2"></span><span class="gbts">YouTube</span></a></li>,
<li class="gbt"><a class="gbzt" href="http://news.google.com/nwshp?hl=en&tab=fn" id="gb_5" onclick="gbar.logger.il(1,{t:5});"><span class="gbtb2"></span><span class="gbts">News</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://mail.google.com/mail/?tab=fm" id="gb_23" onclick="gbar.logger.il(1,{t:23});"><span class="gbtb2"></span><span class="gbts">Gmail</span></a></li>,
<li class="gbt"><a class="gbzt" href="https://drive.google.com/?tab=fo" id="gb_25" onclick="gbar.logger.il(1,{t:25});"><span class="gbtb2"></span><span class="gbts">Drive</span></a></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd" class="gbgt" href="http://www.google.com/intl/en/options/" id="gbztm" onclick="gbar.tg(event,this)"><span class="gbtb2"></span><span class="gbts gbtsa" id="gbztms"><span id="gbztms1">More</span><span class="gbma"></span></span></a><div aria-owner="gbztm" class="gbm" id="gbd"><div class="gbmc gbsb gbsbis" id="gbmmb"><ol class="gbmcc gbsbic" id="gbmm"><li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li><li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li><li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li><li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li><li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li><li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li><li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li></ol><div class="gbsbt"></div><div class="gbsbb"></div></div></div></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/calendar?tab=fc" id="gb_24" onclick="gbar.logger.il(1,{t:24});">Calendar</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://translate.google.com/?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&sa=N&tab=fT" id="gb_51" onclick="gbar.qs(this);gbar.logger.il(1,{t:51});">Translate</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/mobile/?hl=en&tab=fD" id="gb_17" onclick="gbar.logger.il(1,{t:17});">Mobile</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=bks&source=og&sa=N&tab=fp" id="gb_10" onclick="gbar.qs(this);gbar.logger.il(1,{t:10});">Books</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=fG" id="gb_172" onclick="gbar.logger.il(1,{t:172});">Offers</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://wallet.google.com/manage/?tab=fa" id="gb_212" onclick="gbar.logger.il(1,{t:212});">Wallet</a></li>,
<li class="gbmtc"><a class="gbmt gbp1 gbm0l" href="http://www.google.com/shopping?hl=en&spons=1&tab=ff" id="gb_6" onclick="gbar.logger.il(1,{t:6});">Shopping</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.blogger.com/?tab=fj" id="gb_30" onclick="gbar.logger.il(1,{t:30});">Blogger</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/finance?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fe" id="gb_27" onclick="gbar.qs(this);gbar.logger.il(1,{t:27});">Finance</a></li>,
<li class="gbmtc"><a class="gbmt" href="https://plus.google.com/photos?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&sa=N&tab=fq" id="gb_31" onclick="gbar.qs(this);gbar.logger.il(1,{t:31});">Photos</a></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/search?num=100&query=deaf+clock+flash&um=1&ie=UTF-8&hl=en&tbo=u&tbm=vid&source=og&sa=N&tab=fv" id="gb_12" onclick="gbar.qs(this);gbar.logger.il(1,{t:12});">Videos</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbmtc"><a class="gbmt" href="http://www.google.com/intl/en/options/" onclick="gbar.logger.il(1,{t:66});">Even more »</a></li>,
<li class="gbt"><a class="gbgt" href="https://accounts.google.com/ServiceLogin?hl=en&continue=http://www.google.com/search%3Fstart%3D1%26num%3D100%26tbm%3Dshop%26query%3Ddeaf%2Bclock%2Bflash%26tbs%3Dp_ord:rv" id="gb_70" onclick="gbar.logger.il(9,{l:'i'})" target="_top"><span class="gbtb2"></span><span class="gbts" id="gbgs4"><span id="gbi4s1">Sign in</span></span></a></li>,
<li class="gbt gbtb"><span class="gbts"></span></li>,
<li class="gbt"><a aria-haspopup="true" aria-owns="gbd5" class="gbgt" href="http://www.google.com/preferences?hl=en" id="gbg5" onclick="gbar.tg(event,this)" title="Options"><span class="gbtb2"></span><span class="gbts" id="gbgs5"><span id="gbi5"></span></span></a><div aria-owner="gbg5" class="gbm" id="gbd5"><div class="gbmc"><ol class="gbmcc" id="gbom"><li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li><li class="gbmtc"><div class="gbmt gbmh"></div></li><li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li></ol></div></div></li>,
<li class="gbkc gbmtc"><a class="gbmt" href="/preferences?hl=en">Search settings</a></li>,
<li class="gbmtc"><div class="gbmt gbmh"></div></li>,
<li class="gbkp gbmtc"><a class="gbmt" href="http://www.google.com/history/optout?hl=en">Web History</a></li>,
<li class="sr__title sr__item">Price</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_max:35&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CA4QvSs4AQ">Up to $35</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:35,ppr_max:60&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CA8QvSs4AQ">$35 – $60</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:60,ppr_max:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBAQvSs4AQ">$60 – $100</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,price:1,ppr_min:100&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBEQvSs4AQ">Over $100</a></li>,
<li class="sr__title sr__item">Category</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,cat:4546&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBMQvSs4AQ">Alarm Clocks</a></li>,
<li class="sr__title sr__item">Seller</li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6341274&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBUQvSs4AQ">eBay - esbuys</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:6296724&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBYQvSs4AQ">eBay</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8175035&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBcQvSs4AQ">Walmart</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8740&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBgQvSs4AQ">Home Depot</a></li>,
<li class="sr__item"><a href="/search?num=100&tbs=p_ord:rv,seller:8455724&tbm=shop&q=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CBkQvSs4AQ">eBay - myheargear</a></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CB8Q8gIwADgB"><img alt="Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSy4iwMFVESfnhJiRPsyLj4J0BwhL10jDHo6Wv_nBEQCwdw7b4mvTBQlPe6AX2ibOak36sJbQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCAQ8wIwADgB">Sonic Alert 083 0062 Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker</a></h3><div>Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker The new Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker AKA The Bomb Jr", has been designed for guys and girls of all ages on a mission and ...</div><a class="review-link" href="/shopping/product/15389375824222441585?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCEQ9AIwADgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">36 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCMQ8gIwATgB"><img alt="NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcRFdvDfefisMUEx03l6bxiABd1lR6U34_mR6JvFQh42MSiZ4MlJrg1D9NS7oRLoP7hYcLP_aQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$51</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCQQ8wIwATgB">NuTone LA204WH Wireless Plug-In Chime, Strobe Light, White</a></h3><div>An ADA Compliant NuTone Door Chime Alert with <b>Flashing</b> Strobe can be used to notify the user by strobe light when someone is at the door. The receiver plugs into any AC outlet. ...</div><a class="review-link" href="/shopping/product/1312394546385218269?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCUQ9AIwATgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">5 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCcQ8gIwAjgB"><img alt="Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQt3S-okMPgXWWCovojcXTLZoNsYzygBFPgHrNwOCwdfm3WT8LPtMIjpahMTL3k2jLda44_mg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$31</b></div><div>from 10+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCgQ8wIwAjgB">Reizen SBB500SS Sonic Bomb Alarm <b>Clock</b> and Bed Shaker</a></h3><div>We dare you to sleep through this alarm <b>clock</b>. If the 113 dB adjustable tone and volume alarm don't wake you, the 12V bed shaker sure will. Stealth gray color with red controls ...</div><a class="review-link" href="/shopping/product/325865252942151825?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCkQ9AIwAjgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCsQ8gIwAzgB"><img alt="Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRLxKOuwj0KDk28_tAo1POZFUNVc-XMfP-YGJ8X5aXjxDBYW3LNaPKFEKio5JV_3rpIp3N-CA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$30</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CCwQ8wIwAzgB">Sonic Bomb Jr Alarm <b>Clock</b> with Bed Shaker SBJ525SS</a></h3><div>Brand New . Features: Loud Alarm <b>Clock</b> w/ Super Shaker Bright Red Display Pulsating <b>Flashing</b> Alert Light Powerful 6-Volt Bed Shaker Loud 102db Adjustable Tone & Volume Control ...</div><a class="review-link" href="/shopping/product/16680176601904587130?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CC0Q9AIwAzgB#reviews"><div class="star"><div style="width:59px"> </div></div> <span class="review-link">2 reviews</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CC8Q8gIwBDgB"><img alt="Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSm4I1ksmgB-W1iPbY-BwJeZehqup3lkbc1HuMEkugOgqu0Ybd3FUy7ROrGyUmLpVHa22iA-A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDAQ8wIwBDgB">Sonic Alert Sonic Boom Alarm w/Vib (SB1000SS)</a></h3><div>Sonic Alert SB1000ss Sonic Boom Loud Vibrating Alarm <b>Clock</b> w/ Built In Receiver The Sonic Boom Alarm <b>Clock</b> is a unique <b>clock</b> that is guaranteed to wake up even the heaviest ...</div><a class="review-link" href="/shopping/product/13678399262975449557?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDEQ9AIwBDgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDMQ8gIwBTgB"><img alt="Sonic Bomb Sonic Boom Sweetheart Alarm" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDiTvrT-gO3SR52ULMbGETxSx6ZT2xzRsqcTRhqWkzFWSNp0NDxA-2VdJc-52gavosKuqT2A&usqp=CAE"/></a></div><div class="psliprice"><div><b>$34</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDQQ8wIwBTgB">Sonic Bomb Sonic Boom Sweetheart Alarm</a></h3><div>- Sonic Alert sweetheart alarm - Comes with powerful 12 volt bed shaker - Hi/low dimmer switch - Extra loud pulsating audio alarmwith a loud 113db adjustable tone and volume ...</div><a class="review-link" href="/shopping/product/2193391422100058691?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDUQ9AIwBTgB#reviews"><div class="star"><div style="width:65px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDcQ8gIwBjgB"><img alt="Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQG2D4lc3TbzAc-rjLUTYeeDOFCNgCoCj8n9EX4wK1iIr6RLxpedbaDkIp5CyrA3TvqiBd9rw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$90</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDgQ8wIwBjgB">Clear Sounds CLS-SW200 Shake Up Wake Up Alarm <b>Clock</b></a></h3><div>Built-in telephone signaler. 87 dB extra-loud alarm (with adjustable tone & volume control). 12V Super Shaker bed vibrating unit included. Built-in <b>flashing</b> alert lights. Alarm ...</div><a class="review-link" href="/shopping/product/7523847022128109461?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CDkQ9AIwBjgB#reviews"><div class="star"><div style="width:52px"> </div></div> <span class="review-link">1 review</span></a></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CB2ZpwwXpUrzkKMyCiQLjnYCADYHpwdIE6ZiF4n7ZtLGw2QEICRABIN7Nzx4oFVDBybir_f____8BYMmW94zkpKwTyAEHqgQmT9AJQenTsy8Kd3u7XGc7-MS1Kkn3Q-LihcbW4E5FdytpWgZx5ZDABQWgBiaAB9uAjhWQBwHgEtaMgvWdx6nL8AE&sig=AOD64_0Tji8hRcRZzxDFcABvjNQV1BDqow&ctype=5&ved=0CDsQ-hIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ..." src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRpw3sbxfajAxPqnzetnT1Y47ccr35sf8ojB3XbAd4SepbZ86fd0Ak6ThPKFHiqXDdOCdFYOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$78.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CB2ZpwwXpUrzkKMyCiQLjnYCADYHpwdIE6ZiF4n7ZtLGw2QEICRABIN7Nzx4oFVDBybir_f____8BYMmW94zkpKwTyAEHqgQmT9AJQenTsy8Kd3u7XGc7-MS1Kkn3Q-LihcbW4E5FdytpWgZx5ZDABQWgBiaAB9uAjhWQBwHgEtaMgvWdx6nL8AE&sig=AOD64_0Tji8hRcRZzxDFcABvjNQV1BDqow&ctype=5&ved=0CDwQ-RIwBzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D390752983428%26targetid%3D58351966809%26rpc%3D0.06%26rpc_upld_id%3D999%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752983428%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock Flashing</b> Light/lamp Visual/vibrating ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock Flashing</b> Light/Lamp Visual/Vibrating ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=Ci3nYwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQAiDezc8eKBVQlvzesgRgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeAS4rHhy6etyr5F&sig=AOD64_25ksZKH5qsSImk_FCIncIKyb2QMw&ctype=5&ved=0CD4Q-hIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcTCL4kG0LGnGsaGIu05pu3z239MuAwVIiX-UzTfDjpZewhPxm-l52attqzjBmuuCht694ZFzA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$74.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=Ci3nYwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQAiDezc8eKBVQlvzesgRgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeAS4rHhy6etyr5F&sig=AOD64_25ksZKH5qsSImk_FCIncIKyb2QMw&ctype=5&ved=0CD8Q-RIwCDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390753663671%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390753663671%253Flpid%253D82%26adtype%3Dpla">Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Battery Backup Amplified Alert Loud Alarm <b>Clock</b> Lamp <b>Flash</b>/ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=C4FhfwwXpUrzkKMyCiQLjnYCADYHpwdIEse7OtZMB6ZeW5OMBCAkQAyDezc8eKBVQ2dimPWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BLUnJby3sLgmkE&sig=AOD64_17qi_-kNsG07qDyEB2nZNE-pjnaw&ctype=5&ved=0CEEQ-hIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla"><img alt="Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ1DZ03k7pJ14_Shnxdoko2xTFey0CTF7SlRezv7pmZTe1O-pWaCsIoYX3GDng4n5ekMHpmaw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$162.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=C4FhfwwXpUrzkKMyCiQLjnYCADYHpwdIEse7OtZMB6ZeW5OMBCAkQAyDezc8eKBVQ2dimPWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BLUnJby3sLgmkE&sig=AOD64_17qi_-kNsG07qDyEB2nZNE-pjnaw&ctype=5&ved=0CEIQ-RIwCTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390754562794%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25563%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390754562794%253Flpid%253D82%26adtype%3Dpla">Clarity Wireless Alarm <b>Clock</b>/sound/door Bell Visual <b>Flashing</b> Light ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Clarity Wireless Alarm <b>Clock</b>/Sound/Door Bell Visual <b>Flashing</b> ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CAuc-wwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQBCDezc8eKBVQjciXxPv_____AWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BLuqbacqdv2xnY&sig=AOD64_0iqm1OERHcfXhx7zXl5v2LU8jcKw&ctype=5&ved=0CEQQ-hIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla"><img alt="Modern Retro Streamline Moderne Westclox &#39;moon Beam&#39; <b>Clock</b> - ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSIkdU-aNP22cYbWKCzCzB95n7KahncHCi3PwHwvSPIVqd0Zq0C8DPh6egL&usqp=CAE"/></a></div><div class="psliprice"><div><b>$33.99</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CAuc-wwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQBCDezc8eKBVQjciXxPv_____AWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BLuqbacqdv2xnY&sig=AOD64_0iqm1OERHcfXhx7zXl5v2LU8jcKw&ctype=5&ved=0CEUQ-RIwCjgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D251418393806%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25494%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F251418393806%253Flpid%253D82%26adtype%3Dpla">Modern Retro Streamline Moderne Westclox 'moon Beam' <b>Clock</b> - ...</a></h3><div>Live with the beauty of vintage design, without the headaches of vintage technology.This <b>clock</b> by Westclox is an exact replica of the famous 'Moon Beam' design... this one in ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CX5NmwwXpUrzkKMyCiQLjnYCADYHpwdIEse7OtZMB6ZeW5OMBCAkQBSDezc8eKBVQy6_l0fn_____AWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BK8r_Lh-8-W8uYB&sig=AOD64_1D_k8WqwXiieExX1Z5q2SyoakAow&ctype=5&ved=0CEcQ-hIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ..." src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRFntVo9Lhl_PtBSLpYgnV8mUs1lFs44J2aAgnIvKbdN65wzzgDKI9LlTWPlLKCBuhjvL7xOw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$53.95</b></div><div><cite>eBay - esbuys</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CX5NmwwXpUrzkKMyCiQLjnYCADYHpwdIEse7OtZMB6ZeW5OMBCAkQBSDezc8eKBVQy6_l0fn_____AWDJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BK8r_Lh-8-W8uYB&sig=AOD64_1D_k8WqwXiieExX1Z5q2SyoakAow&ctype=5&ved=0CEgQ-RIwCzgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D39615971649_324272%26itemid%3D390752795936%26targetid%3D61144927209%26rpc%3D0.06%26rpc_upld_id%3D25495%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390752795936%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Boom Alarm Led Display <b>Clock</b>+bed Shaker/vibrator+phone ...</a></h3><div>Product Description | Payment Information | Shipping Policy | Return Policy | Contact Us | Feedback BRAND NEW! Sonic Alert Boom Alarm LED Display <b>Clock</b>+Bed Shaker/Vibrator+ ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=Cr7VWwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQBiDezc8eKBVQs46uxwZgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeASxaCzuavajIVU&sig=AOD64_1MVovcZjf6VVYb717Rbm0_s6l3Vw&ctype=5&ved=0CEoQ-hIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ..." src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcSJUQFBD_JTSjYUJp1m8FKGOBvLAPdI-bc3-RX3xDY3ZmbVH3JxMY-kH8lNDO8-_h_qWMXU-Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$54.25</b></div><div><cite>eBay</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=Cr7VWwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQBiDezc8eKBVQs46uxwZgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeASxaCzuavajIVU&sig=AOD64_1MVovcZjf6VVYb717Rbm0_s6l3Vw&ctype=5&ved=0CEsQ-RIwDDgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D171227255787%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F171227255787%253Flpid%253D82%26adtype%3Dpla">Sonic Alert Sonic Boom Sb1000 Alarm <b>Clock</b> W/ Lamp Flasher, Hard Of ...</a></h3><div>Sonic Alert Sonic Boom SB1000 Alarm <b>Clock</b> w/ Lamp Flasher Sonic Alert's original alarm <b>clock</b>, with jack for optional bed shaker, on/off switch for controlling a lamp plugged ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CKH6VwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQByDezc8eKBVQuK7j7ANgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeASrPLDhtGD9L0s&sig=AOD64_3EAg_lePrg7JrAzVAnll7qvMGdrw&ctype=5&ved=0CE0Q-hIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla"><img alt="Sonic Boom &quot;skull&quot; Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b>" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSOGrslAQx8vv9_aPV7gQtyS7wGa6syvU0d4IlxBQ37j3uRZuky2TbyWmMAfWUWuSNwv_fpQQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$56.95</b></div><div><cite>eBay - hear-world</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CKH6VwwXpUrzkKMyCiQLjnYCADYHpwdIEuYaZ6oQB6ajosOMBCAkQByDezc8eKBVQuK7j7ANgyZb3jOSkrBPIAQeqBCZP0AlB6dOzLwp3e7tcZzv4xLUqSfdD4uKFxtbgTkV3K2laBnHlkMAFBaAGJoAH24COFZAHAeASrPLDhtGD9L0s&sig=AOD64_3EAg_lePrg7JrAzVAnll7qvMGdrw&ctype=5&ved=0CE4Q-RIwDTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D35694479049_324272%26itemid%3D390198071968%26targetid%3D61037220969%26rpc%3D0.06%26rpc_upld_id%3D25598%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F390198071968%253Flpid%253D82%26adtype%3Dpla">Sonic Boom "skull" Alarm <b>Clock</b> W/ Bed Shaker For <b>Deaf</b></a></h3><div>The Sonic Boom SBS550bc alarm <b>clock</b> (also known as "The Skull") from Sonic Alert is designed for guys and girls who think outside the box. With red <b>flashing</b> eye sockets, a ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C8PCWwwXpUrzkKMyCiQLjnYCADfXh8dQEtdzbj16o4LuORAgJEAgg3s3PHigVUI_liI34_____wFgyZb3jOSkrBOgAaLbu_8DyAEHqgQlT9AJQenTsy8Kd3u7XEMr9fW1Kkn3Q-LihcbW4E5FdytpWhM9F8AFBaAGJoAHxqREkAcB4BLt6Ky_-aDQzl8&sig=AOD64_1nxxnAhS4nzdSetkEKZE8xdqGzaA&ctype=5&ved=0CFAQ-hIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock"><img alt="Sonic Boom Alarm <b>Clock</b>" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQ_pzvXY2IQBc1KXnWQEG5YoUKggOo-RCbaJ1hLnw7FUWQ3v3MbFnfpCQGOjR0KPv-3zixPpg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$64.95</b></div><div><cite>Enablemart</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C8PCWwwXpUrzkKMyCiQLjnYCADfXh8dQEtdzbj16o4LuORAgJEAgg3s3PHigVUI_liI34_____wFgyZb3jOSkrBOgAaLbu_8DyAEHqgQlT9AJQenTsy8Kd3u7XEMr9fW1Kkn3Q-LihcbW4E5FdytpWhM9F8AFBaAGJoAHxqREkAcB4BLt6Ky_-aDQzl8&sig=AOD64_1nxxnAhS4nzdSetkEKZE8xdqGzaA&ctype=5&ved=0CFEQ-RIwDjgB&adurl=http://www.enablemart.com/sonic-boom-alarm-clock">Sonic Boom Alarm <b>Clock</b></a></h3><div>Wake up to any combination of loud, pulsating audio alarm, <b>flashing</b> lights, or a shaking bed (vibrator sold separately).</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CFMQ8gIwDzgB"><img alt="Bellman &amp; Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b>" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQSK-uSpDUafYWb9d9u45QufjMxHyhm2t8Bgly8lujEmlkA1_iWQhmBfZGvJFScP52d_J0vvg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$69</b></div><div>from 3 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/16428929731058967336?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CFQQ8wIwDzgB">Bellman & Symfon Alarm <b>Clock</b> Classic Vibrating Alarm <b>Clock</b></a></h3><div>The Bellman Hearing Impaired Alarm <b>Clocks</b> from Bellman & Symfon includes a powerful bed shaker and a built-in audible alarm that increases in sound volume, so you can wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CaQ-_wwXpUrzkKMyCiQLjnYCADarntsMC6tfY1D2Shoy7zgEICRAJIN7Nzx4oFVCt-qzxB2DJlveM5KSsE6ABwPWq_wPIAQeqBCVP0AlB6dOzLwp3e7tcNGOv9rUqSfdD4uKFxtbgTkV3K2laIRkIwAUFoAYmgAeoilWQBwHgEtzz99zfhJD7xQE&sig=AOD64_3C8U3-dYPjKERqJpb4l7gm5vbhpg&ctype=5&ved=0CFYQ-hIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla"><img alt="Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcSXYhldgUtHFbvWYM8YZe9kTl5E4o4lj-D3XwrAq0BKYGV_CFNjKdV4Iqyl&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50.95</b></div><div><cite>Active Forever Medical Equipment</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CaQ-_wwXpUrzkKMyCiQLjnYCADarntsMC6tfY1D2Shoy7zgEICRAJIN7Nzx4oFVCt-qzxB2DJlveM5KSsE6ABwPWq_wPIAQeqBCVP0AlB6dOzLwp3e7tcNGOv9rUqSfdD4uKFxtbgTkV3K2laIRkIwAUFoAYmgAeoilWQBwHgEtzz99zfhJD7xQE&sig=AOD64_3C8U3-dYPjKERqJpb4l7gm5vbhpg&ctype=5&ved=0CFcQ-RIwEDgB&adurl=http://www.activeforever.com/sonic-boom-alarm-clock%3Fadtype%3Dpla">Sonic Boom Alarm <b>Clock</b> (without Bed Shaker)</a></h3><div>Loud Alarm <b>Clock</b> the Sonic Boom Alarm <b>Clock</b> SA-SB1000 Multi-Functional Sonic Boom Alarm <b>Clock</b> that Alerts You With <b>Flashing</b> Light and Loud Variable Tone. Guaranteed to wake up ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C-0InwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEAog3s3PHigVUOuixfL9_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BKj_Zyn7bul_ws&sig=AOD64_34e8qflxgl8bZCpm9fxeR4Js6cKQ&ctype=5&ved=0CFkQ-hIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcSfsi8FSeqpn7eF6O8qGTylxWOna8ny4nKjrxPATk4k69ymNUmUZ_0YpZA6JCC975XPqmqJuQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$72.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C-0InwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEAog3s3PHigVUOuixfL9_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BKj_Zyn7bul_ws&sig=AOD64_34e8qflxgl8bZCpm9fxeR4Js6cKQ&ctype=5&ved=0CFoQ-RIwETgB&adurl=http://www.maxiaids.com/products/11380/Amplicom-Alarm-Clock-Ring-Signaler-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Alarm <b>Clock</b> Ring Signaler with Vibrator</a></h3><div>The Amplicom TCL 100 Analog Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has great features for the <b>deaf</b> and hard of hearing Its a handy functional alarm ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C1CyEwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEAsg3s3PHigVUJyj9YT7_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BLv0e6TzYb0z_wB&sig=AOD64_2EwtXMhoUU41Y5B5O_g2leVNMdWg&ctype=5&ved=0CFwQ-hIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcS_VxkA0RX-i4tEvGA5ETLhCPPp4cqf0tsXQ4V6sVwNXBHTof9r_fgSWQndMeYp2wfLfBbNSw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$92.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C1CyEwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEAsg3s3PHigVUJyj9YT7_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BLv0e6TzYb0z_wB&sig=AOD64_2EwtXMhoUU41Y5B5O_g2leVNMdWg&ctype=5&ved=0CF0Q-RIwEjgB&adurl=http://www.maxiaids.com/products/11379/Amplicom-Talking-Digital-Alarm-Clock-with-Vibrator.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Amplicom Talking Digital Alarm <b>Clock</b> with Vibrator</a></h3><div>The Amplicom TCL 200 Talking Digital Alarm <b>Clock</b> with Wireless Vibrating Pad and Telephone Ring Signaler has features for the <b>deaf</b> and hard of hearing as well as those with low ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CykiOwwXpUrzkKMyCiQLjnYCADaOSxLUEs9L32Febm92kVAgJEAwg3s3PHigVUIWo-438_____wFgyZb3jOSkrBOgAe2V0NwDyAEHqgQmT9AJQenTsy8Kd3u7XB1WnfS1Kkn3Q-LihcbW4E5FdytpWj4AkafABQWgBiaAB_vpryOQBwHgErPE_LCQ_JftOg&sig=AOD64_0j5VrpI4GNqk1MboPHJ2txy4EmJw&ctype=5&ved=0CF8Q-hIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html"><img alt="Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ..." src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQRN7SYbOpvNAeNtPLKJ8Dok-TCZObjyMJrKeKiGCzQHx_L2iPFy4ptgyloAxaT33vsGrA80Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$126.99</b></div><div><cite>i-Market</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CykiOwwXpUrzkKMyCiQLjnYCADaOSxLUEs9L32Febm92kVAgJEAwg3s3PHigVUIWo-438_____wFgyZb3jOSkrBOgAe2V0NwDyAEHqgQmT9AJQenTsy8Kd3u7XB1WnfS1Kkn3Q-LihcbW4E5FdytpWj4AkafABQWgBiaAB_vpryOQBwHgErPE_LCQ_JftOg&sig=AOD64_0j5VrpI4GNqk1MboPHJ2txy4EmJw&ctype=5&ved=0CGAQ-RIwEzgB&adurl=http://www.imarketcity.com/cl52alalvial2.html">Clarity 52510-100 AL10 AlertMaster Visual Alert System w/ Door ...</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss. The AL10 alerts you to telephone calls and the doorbell, and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CiG1QwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEA0g3s3PHigVUNzewYD______wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BK935fB3pOmxb4B&sig=AOD64_3gmrK39PnOwx1b1NUXBWNNYc5oYA&ctype=5&ved=0CGIQ-hIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTmfQbgsh5pYuItTp2o3iPP_zxvwRlnVZAthCZv3mcHBnw5GAUg0h_fCv-MjiRZqT9KQz35yw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$174.45</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CiG1QwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEA0g3s3PHigVUNzewYD______wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BK935fB3pOmxb4B&sig=AOD64_3gmrK39PnOwx1b1NUXBWNNYc5oYA&ctype=5&ved=0CGMQ-RIwFDgB&adurl=http://www.maxiaids.com/products/11714/AlertMaster-AL10-Clock-Vibrator-Doorbell-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL10 <b>Clock</b> Vibrator Doorbell System</a></h3><div>The Clarity AlertMaster AL10 is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss The AL10 alerts you to telephone calls and the doorbell and ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CgdARwwXpUrzkKMyCiQLjnYCADezS_cwFtP-t8XCM_dyrSwgJEA4g3s3PHigVUL_hkZ37_____wFgyZb3jOSkrBOgAZTkqdsDyAEHqgQmT9AJQenTsy8Kd3u7XFJBpeW1Kkn3Q-LihcbW4E5FdytpWklxwKDABQWgBiaAB9Sb1iSQBwHgEsXYu9CL-KXHIQ&sig=AOD64_0U3TY2cTFOU8_RIOLdOZU5wHhSPQ&ctype=5&ved=0CGUQ-hIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine"><img alt="Safe Awake" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQlFMnAUaTCBxfZL3Iil9l7vKxfwTh8VtMV3vcv-yAUYrmkXd4p8Xq9MxgnjqrEH1VvBfqHwA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$248.99</b></div><div><cite>LibertyHealthSupply.com</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CgdARwwXpUrzkKMyCiQLjnYCADezS_cwFtP-t8XCM_dyrSwgJEA4g3s3PHigVUL_hkZ37_____wFgyZb3jOSkrBOgAZTkqdsDyAEHqgQmT9AJQenTsy8Kd3u7XFJBpeW1Kkn3Q-LihcbW4E5FdytpWklxwKDABQWgBiaAB9Sb1iSQBwHgEsXYu9CL-KXHIQ&sig=AOD64_0U3TY2cTFOU8_RIOLdOZU5wHhSPQ&ctype=5&ved=0CGYQ-RIwFTgB&adurl=http://www.libertyhealthsupply.com/ProductDetails.asp%3FProductCode%3DLHSHC-SAFEAWAKE%26Click%3D6433%26utm_source%3Dgooglebase%26utm_medium%3Dshoppingengine">Safe Awake</a></h3><div>Sleep peacefully while feeling confident that you will wake up when your T3 smoke detector is activated. The SafeAwake Fire Alarm Aid works with existing smoke detectors to ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CAYCAwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEA8g3s3PHigVUN6gqMADYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASncPWgP7Ln8sq&sig=AOD64_3Kz-kXaktb9ppmQtDLc7v5YxAP4w&ctype=5&ved=0CGgQ-hIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Silver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQ9nt6QSin-wUy7cGzlHisx5BtMapGV8ftU__80yJzy5ytpvUApjMlGTzYoO2HsfQ8fgSRtjA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CAYCAwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEA8g3s3PHigVUN6gqMADYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASncPWgP7Ln8sq&sig=AOD64_3Kz-kXaktb9ppmQtDLc7v5YxAP4w&ctype=5&ved=0CGkQ-RIwFjgB&adurl=http://www.maxiaids.com/products/10302/Quake-N-Wake-3-Alert-Multi-Timer-Silver.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Silver</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CS-NBwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBAg3s3PHigVUNrS1tH4_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BKPpduLtofl9wo&sig=AOD64_2qHye4_JA2mAp7z1Ig1ronz1FPXQ&ctype=5&ved=0CGsQ-hIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Quake N Wake 3 Alert Multi <b>Timer</b> Black" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQFIuqrmM8t1rb1N9M83VpgT4YSXw9lKb7Qx-1VaUNwkPp9waZ_h4mWiRe6ztWWAvIhvfa54Q&usqp=CAE"/></a></div><div class="psliprice"><div><b>$19.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CS-NBwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBAg3s3PHigVUNrS1tH4_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BKPpduLtofl9wo&sig=AOD64_2qHye4_JA2mAp7z1Ig1ronz1FPXQ&ctype=5&ved=0CGwQ-RIwFzgB&adurl=http://www.maxiaids.com/products/12315/Quake-N-Wake-3-Alert-Multi-Timer-Black.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Quake N Wake 3 Alert Multi <b>Timer</b> Black</a></h3><div>The Quake N Wake 3 Alert Multi <b>Timer</b> offers 3 modes it beeps flashes and vibrates to let you know time has expired Set any single alert mode ex beep only or any combination of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CP5fawwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBEg3s3PHigVUIWR9PYFYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeAS4vrMvtK_xJku&sig=AOD64_08QDI5PdpGtPUwhPa7DgKsCD2pMg&ctype=5&ved=0CG4Q-hIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Multi Station Digital <b>Timer</b> 95dB" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcQjREB6LbyRnyLZiXIGDvLLK5fZsW19D56Q9m14wZrGSrwJF2Md8Nb6hysQzZXs5GfDbk1Kdw&usqp=CAE"/></a></div><div class="psliprice"><div><b>$58.95</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CP5fawwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBEg3s3PHigVUIWR9PYFYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeAS4vrMvtK_xJku&sig=AOD64_08QDI5PdpGtPUwhPa7DgKsCD2pMg&ctype=5&ved=0CG8Q-RIwGDgB&adurl=http://www.maxiaids.com/products/7938/Multi-Station-Digital-Timer-95dB.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Multi Station Digital <b>Timer</b> 95dB</a></h3><div>Features 4 different <b>timer</b> stations that can be used independently or simultaneously a large 3 x 3 4 station LCD and bright <b>flashing</b> lights to allow for easy viewing With four ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHEQ8gIwGTgB"><img alt="Sunny and Her Cochlear Implants [Book]" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcTyLHe1kZklsrS3t1d6ezxpjluIjS2AULbwXMCdMI5AyaLSDddijck0Iiey&usqp=CAE"/></a></div><div class="psliprice"><div><b>$14</b></div><div>from 4 stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12374673365063520448?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHIQ8wIwGTgB">Sunny and Her Cochlear Implants [Book]</a></h3><div>Follow Sunny as she lives her life as a <b>deaf</b> child, in a hearing world, with hearing aids. Then, her life changes when her aids no longer help - but there is a solution. Sunny ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHQQ8gIwGjgB"><img alt="Sonic Alert BL300 Sonic Blink Strobe Receiver" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRwGvEWUne92eu8Ql2HWBIRJTkToqdqXqu7vXCJJ7Dx-webfYYYDnNLsPJmJt1PvH8XQbgB8w&usqp=CAE"/></a></div><div class="psliprice"><div><b>$50</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/12470470050715184338?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHUQ8wIwGjgB">Sonic Alert BL300 Sonic Blink Strobe Receiver</a></h3><div>Sonic Blink Remote Receiver The Sonic Alert Sonic Blink BL 300 is the latest compact receiver and features a built-in, high intensity strobe light for signaling. The strobe ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHcQ8gIwGzgB"><img alt="Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcRHSIss-eYy_3dfWYZQtly7TsTeDxzJdBbutz46-0S26LNrUNQ1MSBgVOpf31i_Gxr2SCahnA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$25</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/10857629289559270209?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CHgQ8wIwGzgB">Sonic Alert TR50 Sonic Ring Jr. Telephone Signaler</a></h3><div>The Sonic Ring Jr TR50 telephone signaler alerts you that your telephone is ringing by <b>flashing</b> a lamp on and off automatically. Great for the hard of hearing or noisy or quiet ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=CeSPswwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBIg3s3PHigVUJ261uH5_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BLR2a_uoprgpyo&sig=AOD64_0dpTsx8KCXoBVRLus9g8PcAcahOg&ctype=5&ved=0CHoQ-hIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Bellman Visit Bed Shaker" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcTe_4Z0Ld1AHL5UBL2xHXXWRwMSzE_A1J3Hv2ReKp_gSgHmZpkyzMgfeZxm55W0Ttj5gGfmFQ&usqp=CAE"/></a></div><div class="psliprice"><div><b>$29.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=CeSPswwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBIg3s3PHigVUJ261uH5_____wFgyZb3jOSkrBOgAZOyu_8DyAEHqgQlT9AJQenTsy8Kd3u7XFAunv61Kkn3Q-LihcbW4E5FdytpWgBUF8AFBaAGJoAH1c1EkAcB4BLR2a_uoprgpyo&sig=AOD64_0dpTsx8KCXoBVRLus9g8PcAcahOg&ctype=5&ved=0CHsQ-RIwHDgB&adurl=http://www.maxiaids.com/products/8040/Bellman-Visit-Bed-Shaker.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Bellman Visit Bed Shaker</a></h3><div>Simply connect the Bellman Visit Bed Shaker to any of the receivers in the Bellman system and place it under your pillow or mattress When it receives a signal it will vibrate ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=L&ai=CAgFNwwXpUrzkKMyCiQLjnYCADYHpwdIE6ZiF4n6Jq9-v2QEICRATIN7Nzx4oFVDa4oniB2DJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BK7rOev9oeV9vgB&sig=AOD64_3y5qJFEgO8pl1pz6wQ3GDSwU6CgA&ctype=5&ved=0CH0Q-hIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla"><img alt="Silent Call Midland Noaa Weather Alert Radio W/strobe" src="http://t1.gstatic.com/shopping?q=tbn:ANd9GcQ417sm7xj30kUnxHVv-8YBV1IgH4bCXfLnpAr1a8O3Qw4OYH1_v7ZtWJ21b4qgN2mbQ6ZdAA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$99.50</b></div><div><cite>eBay - myheargear</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=L&ai=CAgFNwwXpUrzkKMyCiQLjnYCADYHpwdIE6ZiF4n6Jq9-v2QEICRATIN7Nzx4oFVDa4oniB2DJlveM5KSsE8gBB6oEJk_QCUHp07MvCnd7u1xnO_jEtSpJ90Pi4oXG1uBORXcraVoGceWQwAUFoAYmgAfbgI4VkAcB4BK7rOev9oeV9vgB&sig=AOD64_3y5qJFEgO8pl1pz6wQ3GDSwU6CgA&ctype=5&ved=0CH4Q-RIwHTgB&adurl=http://rover.ebay.com/rover/1/711-117182-37290-0/2%3Fmtid%3D1588%26kwid%3D1%26crlp%3D34063204569_324272%26itemid%3D220668185276%26targetid%3D58350622089%26rpc%3D0.06%26rpc_upld_id%3D25479%26device%3Dc%26mpre%3Dhttp%253A%252F%252Fwww.ebay.com%252Fitm%252Flike%252F220668185276%253Flpid%253D82%26adtype%3Dpla">Silent Call Midland Noaa Weather Alert Radio W/strobe</a></h3><div>SquareTrade AP6.0 SILENT CALL MIDLAND NOAA EMERGENCY WEATHER ALERT RADIO WITH <b>FLASHING</b> STROBE LIGHT AND VOICE, SIREN, TONE ALERT-FOR <b>DEAF</b>, HEARING IMPAIRED A Weather Alert ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=Cg5V5wwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBQg3s3PHigVUIu-15ECYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASybuvt9v86NGyAQ&sig=AOD64_2i09Zl4xB1hOHT-X6_Rllil31yFg&ctype=5&ved=0CIABEPoSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="AlertMaster AL11 Doorbell and Phone System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcS4tFb_Aj_GFdb9JsQJNNlbOulD5NKN9drL6tzPfn9nvY-ByIRbNXSncZn1k-lNdqm1EhW4Ng&usqp=CAE"/></a></div><div class="psliprice"><div><b>$79.70</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=Cg5V5wwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBQg3s3PHigVUIu-15ECYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASybuvt9v86NGyAQ&sig=AOD64_2i09Zl4xB1hOHT-X6_Rllil31yFg&ctype=5&ved=0CIEBEPkSMB44AQ&adurl=http://www.maxiaids.com/products/11713/AlertMaster-AL11-Doorbell-and-Phone-System.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">AlertMaster AL11 Doorbell and Phone System</a></h3><div>The Clarity AlertMaster AL11 Doorbell and Telephone System is part of our Visual Alert System for the <b>deaf</b> or people with profound hearing loss It gives you visual alerts of ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/aclk?sa=l&ai=C37SJwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBUg3s3PHigVUMnK2NsBYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASy4K4zM6D7qi2AQ&sig=AOD64_1uHsrjPZz1X-FqX1mc_fPgaM-dUA&ctype=5&ved=0CIMBEPoSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225"><img alt="Pronto 40 Talking 40 cell Braille Organizer" src="http://t0.gstatic.com/shopping?q=tbn:ANd9GcRDLHqhj8wOwm9UCNeisaJVkyVcEM4kGEaY3n5E1hJxsW-iIdWoHF2ua4xA&usqp=CAE"/></a></div><div class="psliprice"><div><b>$7,495.00</b></div><div><cite>Maxi-Aids</cite></div></div><div class="pslimain"><h3 class="r"><a href="/aclk?sa=l&ai=C37SJwwXpUrzkKMyCiQLjnYCADaaBpZgE9paQ9C7untiVSAgJEBUg3s3PHigVUMnK2NsBYMmW94zkpKwToAGTsrv_A8gBB6oEJU_QCUHp07MvCnd7u1xQLp7-tSpJ90Pi4oXG1uBORXcraVoAVBfABQWgBiaAB9XNRJAHAeASy4K4zM6D7qi2AQ&sig=AOD64_1uHsrjPZz1X-FqX1mc_fPgaM-dUA&ctype=5&ved=0CIQBEPkSMB84AQ&adurl=http://www.maxiaids.com/products/12265/Pronto-40-Talking-40-cell-Braille-Organizer.html%3Futm_source%3DFroogle%26utm_medium%3Dorganic%26utm_campaign%3DFroogle%26idAff%3D15225">Pronto 40 Talking 40 cell Braille Organizer</a></h3><div>A talking electronic organizer with interchangeable Braille and standard QWERTY keyboards the Pronto 40 offers many helpful personal organization features like note taking ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CIYBEPICMCA4AQ"><img alt="Clarity 52512 AlertMaster AL12 Visual Alert System" src="http://t3.gstatic.com/shopping?q=tbn:ANd9GcQlz_YQlNzFy53tYttIHm0lEF38R9U0TeHFVRhdI89HzKC-fl72NdeiQS6ncUmHE_rX-LaK_g&usqp=CAE"/></a></div><div class="psliprice"><div><b>$45</b></div><div>from 25+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/6959019717107023026?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CIcBEPMCMCA4AQ">Clarity 52512 AlertMaster AL12 Visual Alert System</a></h3><div>Clarity AlertMaster visual alert system Wirelessly connects to remote accessory units (sold separately) Bright - <b>flashing</b> red alert light Phone call visual alert indicator ...</div></div><div style="clear:both"></div></div></li>,
<li class="g"><div class="pslires"><div class="psliimg"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CIkBEPICMCE4AQ"><img alt="Clarity 52510.000 AlertMaster AL10 Visual Alert System" src="http://t2.gstatic.com/shopping?q=tbn:ANd9GcQljpTpLG-JUQZgEKzVABpjWkanEYL5HpwQC3HojD0uFme2jev-ly-x2nD06RpIp1vUM8BdYg&usqp=CAE"/></a></div><div class="psliprice"><div><b>$121</b></div><div>from 50+ stores</div></div><div class="pslimain"><h3 class="r"><a href="/shopping/product/9478224682263796218?num=100&query=deaf+clock+flash&sa=X&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CIoBEPMCMCE4AQ">Clarity 52510.000 AlertMaster AL10 Visual Alert System</a></h3><div>The Clarity 52510.000 Alert10 Home Notification System visually alerts you to visitors, telephone calls, and alarm <b>clock</b> functions. It also monitors the specific sounds made by ...</div></div><div style="clear:both"></div></div></li>,
<li class="taf"><h3><a href="/aclk?sa=l&ai=CKyd6wwXpUrzkKMyCiQLjnYCADb7-pJgEppz60xSXgb17CAMQASDezc8eKANQn82E4AdgyZb3jOSkrBOgAZOyu_8DyAEBqgQnT9AJ6vvLih-LTXvzXN9EWVXO7F8mbgsnP5IZ3MXnGi4ZTHWbhUpTgAfVzUSQBwE&sig=AOD64_3CZwk2-MOmy9jTyXx1PXE2zi6FHA&ved=0CI0BENEMOAE&adurl=http://www.maxiaids.com/categories/80/Alarm-Clocks.html" id="pa1" style="zoom:1">Alarm <b>Clocks</b> for the <b>Deaf</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.maxiaids.com/Alarm-<b>Clocks</b>-<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CI4BEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CJABEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">maxiaids.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:top"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=maxiaids.com">49 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Vibrating Alarm <b>Clocks</b> for Hearing Impaired - On Sale, Big Selection!</span><div class="osl"><a href="/aclk?sa=l&ai=C7sDnwwXpUrzkKMyCiQLjnYCADb7-pJgEppz60xSXgb17CAMQASDezc8eKANQubuCdGDJlveM5KSsE6ABk7K7_wPIAQGqBCdP0Anq-8uKH4tNe_Nc30RZVc7sXyZuCyc_khncxecaLhlMdZuFSlPSBgkQ5nsY9r0PKAGAB9XNRJAHAQ&sig=AOD64_24yhuK-YpOKE6cCsyg3jKu1Cnk0Q&ctype=4&ved=0CJQBEMIFKAA4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D109%26idstore%3D1%26category%3DLow-Vision-Telephones">Low Vision Telephones</a> - <a href="/aclk?sa=l&ai=CmXoLwwXpUrzkKMyCiQLjnYCADb7-pJgEppz60xSXgb17CAMQASDezc8eKANQrIiw1_______AWDJlveM5KSsE6ABk7K7_wPIAQGqBCdP0Anq-8uKH4tNe_Nc30RZVc7sXyZuCyc_khncxecaLhlMdZuFSlPSBgkQ5nsYrrcPKAGAB9XNRJAHAQ&sig=AOD64_1AXRopolmUIwb52tCCm0Cx-ontMQ&ctype=4&ved=0CJUBEMIFKAE4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D52%26idstore%3D1%26category%3DLow-Vision-Clocks">Low Vision Clocks</a> - <a href="/aclk?sa=l&ai=Cg6CmwwXpUrzkKMyCiQLjnYCADb7-pJgEppz60xSXgb17CAMQASDezc8eKANQyMa0vPn_____AWDJlveM5KSsE6ABk7K7_wPIAQGqBCdP0Anq-8uKH4tNe_Nc30RZVc7sXyZuCyc_khncxecaLhlMdZuFSlPSBgkQ5nsYjrsPKAGAB9XNRJAHAQ&sig=AOD64_1xGIKIMyDRRmALg0CLiTjG6IqBFQ&ctype=4&ved=0CJYBEMIFKAI4AQ&adurl=http://www.maxiaids.com/store/ProdList.asp%3FidCategory%3D6%26idstore%3D1%26category%3DLow-Vision-Products">Low Vision Products</a> - <a href="/aclk?sa=l&ai=CU621wwXpUrzkKMyCiQLjnYCADb7-pJgEppz60xSXgb17CAMQASDezc8eKANQpcWQRGDJlveM5KSsE6ABk7K7_wPIAQGqBCdP0Anq-8uKH4tNe_Nc30RZVc7sXyZuCyc_khncxecaLhlMdZuFSlPSBgkQ5nsYnrkPKAGAB9XNRJAHAQ&sig=AOD64_1PIxtNuxhC85-tU8PWBheaszORDA&ctype=4&ved=0CJcBEMIFKAM4AQ&adurl=http://www.maxiaids.com/store/ProdIndex.asp%3Fidstore%3D1">Vision</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CJABEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li>,
<li class="tam"><h3><a href="/aclk?sa=L&ai=Cx1nrwwXpUrzkKMyCiQLjnYCADaurqeACu964oH7_2tROCAMQAiDezc8eKANQ8KXDxwNgyZb3jOSkrBPIAQGqBCRP0GmL18uJH4tNe7tcdQanlbUqSfdD4uKFxtaoSO0aK0rVP6uAB4v9qjWQBwE&sig=AOD64_0zwvjZBHJsVhZtBDyLriKV09QbpQ&ved=0CJkBENEMOAE&adurl=http://www.amazon.com/s/%3Fie%3DUTF8%26keywords%3Ddeaf%2Bclock%26tag%3Dgooghydr-20%26index%3Daps%26hvadid%3D33842953555%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D18137556301088479768%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc%26ref%3Dpd_sl_3la6dvvrux_b" id="pa2" style="zoom:1"><b>Deaf Clock</b> at Amazon - Low Prices on <b>Deaf clock</b></a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.amazon.com/Home</cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CJoBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CJwBEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li></ul></div></div></div><div class="f"><div style="float:left">amazon.com is rated <span class="star sr" style="display:-moz-inline-box;display:inline-block;float:none;vertical-align:top"><span style="width:59px"> </span></span> (<a class="fl" href="http://www.google.com/shopping/seller?q=amazon.com&mrqs=1">323 reviews</a>)</div></div><div style="clear:both"></div><span class="ac">Free Shipping on Qualified Orders. </span><div class="osl"><a href="/aclk?sa=L&ai=CZ2VZwwXpUrzkKMyCiQLjnYCADaurqeACu964oH7_2tROCAMQAiDezc8eKANQ_-rL8_z_____AWDJlveM5KSsE8gBAaoEJE_QaYvXy4kfi017u1x1BqeVtSpJ90Pi4oXG1qhI7RorStU_q9IGCxCLn1QYw7fWBygBgAeL_ao1kAcB&sig=AOD64_2TJZhcKm5kOPPeCNH8YkcOhzpisQ&ctype=4&ved=0CKABEMIFKAA4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D1063252%26ext%3D470-1525%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D1723173129260504245%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Bedding</a> - <a href="/aclk?sa=L&ai=CFCuSwwXpUrzkKMyCiQLjnYCADaurqeACu964oH7_2tROCAMQAiDezc8eKANQxaKHrgFgyZb3jOSkrBPIAQGqBCRP0GmL18uJH4tNe7tcdQanlbUqSfdD4uKFxtaoSO0aK0rVP6vSBgsQi59UGMu21gcoAYAHi_2qNZAHAQ&sig=AOD64_26YkDui_3VYeOr6gIBhdixpO-eDA&ctype=4&ved=0CKEBEMIFKAE4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D510106%26ext%3D470-1523%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D2096800614406315661%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Vacuums and Floor Care</a> - <a href="/aclk?sa=L&ai=ChDEJwwXpUrzkKMyCiQLjnYCADaurqeACu964oH7_2tROCAMQAiDezc8eKANQ29veoAVgyZb3jOSkrBPIAQGqBCRP0GmL18uJH4tNe7tcdQanlbUqSfdD4uKFxtaoSO0aK0rVP6vSBgsQi59UGOOz1gcoAYAHi_2qNZAHAQ&sig=AOD64_3rKwPSU1CbWPO-Og0rMY-vfLiZtw&ctype=4&ved=0CKIBEMIFKAI4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D1057794%26ext%3D470-1522%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D2024632328721272228%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Furniture and Décor</a> - <a href="/aclk?sa=L&ai=CnDMDwwXpUrzkKMyCiQLjnYCADaurqeACu964oH7_2tROCAMQAiDezc8eKANQvYufjvn_____AWDJlveM5KSsE8gBAaoEJE_QaYvXy4kfi017u1x1BqeVtSpJ90Pi4oXG1qhI7RorStU_q9IGCxCLn1QYs7nWBygBgAeL_ao1kAcB&sig=AOD64_1MJkETwJG8dS7YlKBMhGXFb0ScyA&ctype=4&ved=0CKMBEMIFKAM4AQ&adurl=http://www.amazon.com/b/%3Fie%3DUTF8%26node%3D6361272011%26ext%3D470-1517%26ref%3Dpd_sl_3la6dvvrux_b%26tag%3Dgooghydr-20%26hvpos%3D1o2%26hvexid%3D%26hvnetw%3Dg%26hvrand%3D4902049461117149981%26hvpone%3D%26hvptwo%3D%26hvqmt%3Db%26hvdev%3Dc">Off to College</a></div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CJwBEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li>,
<li class="tal"><h3><a href="/aclk?sa=L&ai=C6GW2wwXpUrzkKMyCiQLjnYCADYOF7JMG89zxqy28oKeEBggDEAMg3s3PHigDUPDt19z5_____wFgyZb3jOSkrBPIAQGqBChP0Amw3MuIH4tNe_Nc30RZeMvZUCZuCyc_khncxecaLhtMdZvDC8UCgAe7jYYfkAcB&sig=AOD64_2Ihif2khA1sLN8pqwz6pwKI8s2rA&ved=0CKUBENEMOAE&adurl=http://www.info.com/clocks%2520for%2520deaf%3Fcb%3D36%26q_csr%3D1%26qnet%3Dg%26q_mt%3Db%26q_loc%3DS%26q_ad%3D12085609059%26qsite%3D%26cmp%3D4643" id="pa3" style="zoom:1"><b>Clocks</b> For <b>Deaf</b> Info</a></h3><div class="kv" style="margin-bottom:2px;zoom:1"><cite>www.info.com/<b>Clocks</b>For<b>Deaf</b></cite><div class="am-dwn-arw-container"><div aria-expanded="false" aria-haspopup="true" data-ved="0CKYBEOwdOAE" onclick="google.sham(this);" style="display:inline" tabindex="0"><span class="am-dwn-arw"></span></div><div class="am-dropdown-menu" role="menu" style="display:none" tabindex="-1"><ul><li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CKgBEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li></ul></div></div></div><span class="ac">Get Info On <b>Clocks</b> For <b>Deaf</b>. Access 10 Search Engines At Once.</span><div class="soc"><a href="/url?q=https://plus.google.com/116287553587609998453&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CKoBEPIdOAE&usg=AFQjCNGwLimlsekrLHkllTPg7zTM2Pc-EA">Info.com</a> has 135 followers on Google+</div></li>,
<li class="am-dropdown-menu-item" style="margin:0"><a class="am-dropdown-menu-item-text" href="/url?q=/settings/ads/preferences%3Fhl%3Den&sa=U&ei=wwXpUpjsJsjYoASspoGQAw&ved=0CKgBEIETOAE&usg=AFQjCNEvflBex7L2UlRRCoJrDlYY882erQ" target="_blank">Why this ad?</a></li>]
In [56]:
filename = os.path.join('/Users/thor/Google Drive/Shared/ms_otosense/slurps',
'http{§§www.google.com§search?start=1&num=100&tbm=shop&query=deaf+clock+flash&tbs=p_ord%3Arv.html')
In [57]:
bbbb = BeautifulSoup(pfile.to.str(filename))
In [58]:
bbbb.findAll('li')
Out[58]:
[]
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [47]:
type(pfile.to.str(os.path.join(save_folder, f[0])))
Out[47]:
str
In [48]:
type(pfile.to.str(os.path.join(save_folder, f[1])))
Out[48]:
str
In [33]:
skipped = 0
for i, url in enumerate(url_list):
try:
# skip urls already slurped
if slurp_already_saved(url):
skipped += 1
continue # go to the next url
else:
if skipped > 0:
log_progress('SKIPPED: %d urls skipped because we already had them.' % skipped, log_file)
skipped = 0 # reset skipped counter
# slurp
log_progress('item %d: slurping %s' % (i, url), log_file)
try:
html = get_html_of_url(url)
except BaseException as e:
log_error('item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
continue # go to the next url
# process
if html_is_valid(html):
save_html_of_slurp(html, url)
else:
log_error('html not valid: item %d, %s' % (i, url), log_file)
except BaseException as e:
log_error('II item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
pause(pause_between_slurps_in_seconds)
log_progress('!!!!!!!!!!!!!! I am DONE !!!!!!!!!!!', log_file)
In [31]:
log_error('II item %d: get_html_of_url(%s): error = %s' % (i, url, e.message), log_file)
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [89]:
url = 'http://whatismyipaddress.com/'
print "\n ----------- WITHOUT --------------------- \n"
r = requests.get(url)
print r.text
print "\n ------------ WITH --------------------- \n"
r = requests.get(url, headers=headers, params=search_params,
timeout=7.0, proxies=ANONYMIZER_PROXIES, auth=ANONYMIZER_AUTH)
print r.text
----------- WITHOUT ---------------------
You appear to be an automated script. For API details please visit http://whatismyipaddress.com/api
------------ WITH ---------------------
<!doctype html>
<html lang="en">
<head>
<meta charset="windows-1252">
<meta name="robots" content="noarchive">
<title>What Is My IP Address? Lookup IP, Hide IP, Change IP, Trace IP and more...</title>
<meta name="description" content="IP address lookup, location, proxy detection, email tracing, IP hiding tips, blacklist check, speed test, and forums. Find, get, and show my IP address.">
<meta name="keywords" content="my ip ,ip, address, my, what, is, find, get, show, locate, change, location, how, do, i, ip address, proxy, server, anonymous, hide, conceal, stealth, surf, web, anonymizer, anonymize, changer, privacy, geolocation, geolocate, lookup, look up, locate, trace, track, email, source, headers">
<meta property="fb:admins" content="607824267" />
<link rel="shortcut icon" href="http://cdn.whatismyipaddress.com/favicon.ico">
<link rel="stylesheet" type="text/css" href="http://cdn.whatismyipaddress.com/css/myip_v4gz.css">
<link rel="publisher" href="https://plus.google.com/+whatismyipaddress">
<link rel="canonical" href="http://whatismyipaddress.com">
<script type="text/javascript">if (top.location!= self.location) {top.location = self.location.href;}</script>
<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/1007765/WIMIA-HomePage-Right', [300, 250], 'div-gpt-ad-1321402480744-2').addService(googletag.pubads());
googletag.defineSlot('/1007765/WIMIA-Homepage-Top', [728, 90], 'div-gpt-ad-1354814859635-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-226290-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="outertop">
<div id="main">
<div id="wrap">
<div id="header">
<div id="logo"><a href="http://whatismyipaddress.com"><img src="http://cdn.whatismyipaddress.com/images-v4/logo.png" width="216" height="73" alt="What Is My IP" style="padding-top:15px;"></a></div>
<div id="slogan"><img src="http://cdn.whatismyipaddress.com/images-v4/slogan.png" alt="How you connect to the world" width="513" height="37" style="padding-top:45px;"></div>
<div id="search">
<form action="/search-results" id="cse-search-box" style="padding:13px 0px 0px 15px;">
<div>
<input type="hidden" name="cx" value="partner-pub-2377419349862372:t35o8u-g9e6">
<input type="hidden" name="cof" value="FORID:9">
<input type="hidden" name="ie" value="ISO-8859-1">
<input type="text" name="q" style="width:100px;" placeholder="IP Address|Search">
<input type="submit" name="sa" value="Search">
</div>
</form>
</div>
</div>
<div id="menubackground"></div>
<div id="menu">
<div class="menu0"></div><div class="menu1"><a href="">MY IP</a></div>
<div class="menu0"></div><div class="menu1"><a href="/ip-lookup">IP LOOKUP</a></div>
<div class="menu0"></div><div class="menu1"><a href="/blacklist-check">BLACKLIST CHECK</a></div>
<div class="menu0"></div><div class="menu1"><a href="/trace-email">TRACE EMAIL</a></div>
<div class="menu0"></div><div class="menu1"><a href="/speed-test">SPEED TEST</a></div>
<div class="menu0"></div><div class="menu1"><a href="/hide-ip">HIDE IP</a></div>
<div class="menu0"></div><div class="menu1"><a href="/change-ip">CHANGE IP</a></div>
<div class="menu0"></div><div class="menu1"><a href="/ip-tools">IP TOOLS</a></div>
<div class="menu0"></div><div class="menu1"><a href="/faqs">FAQS</a></div>
<div class="menu0"></div><div class="menu1"><a href="http://forums.whatismyipaddress.com">FORUMS</a></div>
</div>
<div id="section_content_full">
<!-- google_ad_section_start -->
<div id="toolmenu">
<div style="padding-top:5px;"></div>
<div class="toolitem">
<div class="toolimage"><a href="/ip-lookup"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-ip-lookup.png" height="58" width="58" alt="IP Lookup"><br>IP Lookup</a></div>
<div class="tooltext"><a href="/ip-lookup">Zero-in on an IP address<br><span class="toolitemtext">Know the IP address of another computer? You can find where in the world it is—and more.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/trace-email"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-trace-email.png" height="58" width="58" alt="IP Lookup"><br>Trace Email</a></div>
<div class="tooltext"><a href="/trace-email">Locate the sender<br><span class="toolitemtext">Track down the geographical location and origin of an email you received.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/blacklist-check"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-blacklist-check.png" height="58" width="58" alt="IP Lookup"><br>Blacklist Check</a></div>
<div class="tooltext"><a href="/blacklist-check">You've been blocked!<br><span class="toolitemtext">Have you been blacklisted because of the IP address you use? Check to see here.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/speed-test"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-speed-test.png" height="58" width="58" alt="IP Lookup"><br>Speed Test</a></div>
<div class="tooltext"><a href="/speed-test">Free speed testing<br><span class="toolitemtext">Is your Internet connection up to speed? Find out for free with a quick click.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/hide-ip"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-hide-ip.png" height="58" width="58" alt="IP Lookup"><br>Hide IP</a></div>
<div class="tooltext"><a href="/hide-ip">They'll never know it's you<br><span class="toolitemtext">Learn how to use a high-tech "middleman" to shield your real<br>IP address on the Internet.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/change-ip"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-change-ip.png" height="58" width="58" alt="IP Lookup"><br>Change IP</a></div>
<div class="tooltext"><a href="/change-ip">Should you do it?<br><span class="toolitemtext">Discover the facts, myths and truths about changing your IP address.</span></a></div>
</div>
<div class="toolitem">
<div class="toolimage"><a href="/ip-tools"><img src="http://cdn.whatismyipaddress.com/images-v4/icon-ip-tools.png" height="58" width="58" alt="IP Lookup"><br>IP Tools</a></div>
<div class="tooltext"><a href="/ip-tools">More cool IP tools<br><span class="toolitemtext">Have the right tool for any job. That goes for your Internet connection, too.</span></a></div>
</div>
<div style="padding:50px 0px 0px 10px;">
<strong class="home_title">Recent Articles</strong><br>
<a href='/vpn-comparison'>VPN Comparison</a><br>
<a href='/better-password'>Building a Better Password</a><br>
<a href='/security-password'>Change your Password?</a><br>
<a href='/ip-facts'>What is the "IP" in IP Address?</a><br>
<a href='/public-wifi'>How to Be Safe Online</a><br>
<a href='/router-modem'>Routers vs. Modems</a><br>
<a href='/viruses-malware'>Viruses and Malware</a><br>
</div>
</div>
<div id="adtop"><div id='div-gpt-ad-1354814859635-0' style='width:728px; height:90px;'><script type='text/javascript'>googletag.cmd.push(function() { googletag.display('div-gpt-ad-1354814859635-0'); });</script></div></div>
<div id="main_content">
<div id="section_left">
<div style="font-size:12px;">Currently, January 28, 2014 at 11:09am PST,</div>
<div style="text-align:center;font-size:30px;padding-top:15px;color:#000;">Your IP Address Is:</div>
<div style="text-align:center;font-size:30px;padding-top:25px;font-weight:bold;color:#007cc3;">
<!-- do not script -->
209.216.228.180
<!-- do not script -->
</div>
<div style="padding:15px 0px 10px 0px;"><span style="color:#007cc3;font-weight:bold;">NOTE:</span> Your IP Address could be different tomorrow.</div>
<div style="clear:both;width:300px;height:250px;background-image:url(http://open.mapquestapi.com/staticmap/v4/getmap?size=300,250&imagetype=gif&type=map&zoom=5&center=32.8073,-117.1324&key=Fmjtd%7Cluu2n90zlu%2C8l%3Do5-hazlq);"><a href="/ip/209.216.228.180"><img src="http://cdn.whatismyipaddress.com/images/layer3.png" width="300" height="250" alt="Click for more about 209.216.228.180"></a></div>
<div style="color:#900;font-size:13px;text-align:left;padding-bottom:10px;">Location not accurate? <a href="/update-location-test">Update your IP location</a></div>
<table style="padding-top:10px;">
<tr><th>ISP:</th><td>American Internet Services, LLC.</td></tr> <tr><th>Services:</th><td><a href="/ip-services">None Detected</a></td></tr> <tr><th>City:</th><td>San Diego</td></tr> <tr><th>Region:</th><td>California</td></tr> <tr><th>Country:</th><td>United States</td></tr> </table>
<div style="color:#900;font-size:13px;padding:3px;text-align:center;background-color:yellow;">Don't want this ↑↑↑ known? <a href='/hide-ip'>Hide your IP details</a></div>
<div style="text-align:center;padding-top:20px;"><a href="/209.216.228.180" class="button_link">Learn More About This IP</a></div>
<div class="home_title">It's not personal—It's just your connection</div>
<p>Welcome to whatismyIPaddress.com. Your IP address is something you probably rarely think about, but it's vitally important to your online lifestyle. Without an IP address, you wouldn't be able to get today's weather, check the latest news or look at videos online. Why? Because without your IP address, websites like weather.com, CNN or ESPN wouldn't know where to send the information you asked for. They wouldn't be able to get it to YOUR computer.</p>
<div class="home_title">Our goal: helpful information</div>
<p>Still, there seems to be a lot of misinformation, concern and confusion about IP addresses. Part of our mission is to separate facts from hype and give you helpful information. You can learn more about IP address basics in our article called "IP 101".</p>
<div style="text-align:center;"><a href="/ip-basics" class="button_link">Read More</a></div>
<div style="padding-top:50px;"></div>
</div>
<div id="section_right">
<div style="width:300px;height:266px;clear:both;padding-top:5px;"><div style="width:299px;height:265px;border-left:1px solid #bbb;">
<div style="float:left;width:265px;padding:0px 0px 0px 10px;"><img src="http://cdn.whatismyipaddress.com/images-v4/optin-head.gif" width="206" height="52" alt="Know more. Do more. Get IPInsights"></div>
<div style="float:right;"><img src="http://cdn.whatismyipaddress.com/images-v4/optin-form-a-bg.png" alt=""></div>
<div style="float:left;width:140px;padding:10px 0px 0px 10px;font-size:13px;line-height:17px;font-family:arial;">Subscribe to our newsletter and boost your IT I.Q. with<br>IP news, hot tips, updates and more.<br><br><strong>Get yours today!</strong></div>
<div style="padding:15px 0px 10px 10px;">
<form action="http://whatismyipaddress.us7.list-manage2.com/subscribe/post?u=55bef0943ce9e5480b2c58ec3&id=c7f4d3fba5" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_top" novalidate style="margin:0px;padding:0px;">
<div style="float:left;background-image:url('http://cdn.whatismyipaddress.com/images-v4/email-field-bg.gif');height:29px;width:190px;"><input type="email" style="border:none;margin:4px 0px 0px 8px;width:165px;" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Your email" required></div>
<div style="float:right;padding-right:5px;"><input type="image" value="Subscribe" name="subscribe" src="http://cdn.whatismyipaddress.com/images-v4/subscribe.png" style="border:none;margin:0px;padding:0px;position:relative;top:-1px;" alt="Submit"></div>
</form>
</div>
<div style="clear:both;float:left;padding:0px 10px 0px 10px;font-size:10px;line-height:12px;font-family:arial;">We'll never share your address. You can opt out any time.<br />This is a free publication. Please review our <a href="http://whatismyipaddress.com/privacy-policy" style="color:#58585a">Privacy Policy</a>.</div>
</div>
</div>
<div id="adright"><div id='div-gpt-ad-1321402480744-2' style='width:300px; height:250px;'><script type='text/javascript'>googletag.cmd.push(function() { googletag.display('div-gpt-ad-1321402480744-2'); });</script></div></div>
</div>
</div>
<!-- google_ad_section_end -->
</div>
</div>
</div>
</div>
<footer>
<div id="foot_section">
<div id="foot_inner">
<div id="foot_copy">© 2000-2014 What Is My IP Address. All Rights Reserved.</div>
<div id="foot_menu">
<ul>
<li><img src="http://cdn.whatismyipaddress.com/images-v4/social.png" width="78" height="16" alt="Social" usemap="#socialmap" class="fbicon"></li>
<li><a href="/privacy-policy">Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms of Use</a></li>
<li><a href="/ipinsights">Newsletter</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</footer>
<map name="socialmap">
<area shape="rect" coords="0,0,15,15" alt="Facebook" href="http://www.facebook.com/whatismyipaddress">
<area shape="rect" coords="31,0,46,15" alt="Google+" href="https://plus.google.com/+whatismyipaddress" rel="publisher">
<area shape="rect" coords="62,0,77,15" alt="Twitter" href="http://twitter.com/wimia">
</map>
<form method="POST" action="/update/process2_quiet" name="w3csubmit">
<input type="text" name="w3c_lat" id="w3c_lat" style="display:none;">
<input type="text" name="w3c_lng" id="w3c_lng" style="display:none;">
<input type="submit" value="" ID="Submit" NAME="Submit" style="display:none;">
</form>
<script src="http://maps.google.com/maps/api/js?sensor=false&key=AIzaSyAVTcfcKHhNtLVUYlZKRDwfjkUUmSFbmSE" type="text/javascript"></script>
<script type="text/javascript">
// Determine support for Geolocation
if (navigator.geolocation) {
// Locate position
navigator.geolocation.getCurrentPosition(displayPosition, errorFunction);
}
else
{}
// Success callback function
function displayPosition(pos) {
var mylat = pos.coords.latitude;
var mylong = pos.coords.longitude;
document.getElementById('w3c_lat').value = mylat;
document.getElementById('w3c_lng').value = mylong;
document.forms["w3csubmit"].submit();
}
// Error callback function
function errorFunction(pos) {}
</script>
</body>
</html>
In [ ]:
In [191]:
def get_link_from_results(results_soup):
urlpane = results_soup.find('div', attrs={'class':'resultDisplayUrlPane'})
return urlparse.parse_qs(urlpane.find('a', attrs='resultDisplayUrl').attrs['href'])['ru'][0]
def get_title_text_from_results(results_soup):
return results_soup.find('div', attrs={'class':'resultTitlePane'}).get_text()
def get_description_text_from_results(results_soup):
return results_soup.find('div', attrs={'class':'resultDescription'}).get_text()
def get_web_results_dict_from_results_soup(results_soup):
return {
'link':get_link_from_results(results_soup),
'title':get_title_text_from_results(results_soup),
'description':get_description_text_from_results(results_soup)
}
def parse_dogpile_html(html):
b = BeautifulSoup(html)
result_tags = ['resultsAdsTop', 'resultsMain', 'resultsAdsBottom']
parse_dict = {k: b.find('div',attrs={'id':k}) for k in result_tags}
parse_dict['resultsAdsTop'] = parse_dict['resultsAdsTop'].findAll('div',attrs={'class':'searchResult adResult'})
parse_dict['resultsMain'] = parse_dict['resultsMain'].findAll('div',attrs={'class':'searchResult webResult'})
parse_dict['resultsAdsBottom'] = parse_dict['resultsAdsBottom'].findAll('div',attrs={'class':'searchResult adResult'})
parse_dict['resultsMain'] = [get_web_results_dict_from_results_soup(r) for r in parse_dict['resultsMain']]
return parse_dict
def diagnose_parse_dict(parse_dict):
print "parse_dict_keys: %s" % d.keys()
print "number of resultsMain: %d" % len(d['resultsMain'])
print d['resultsMain'][0]
In [192]:
d = parse_dogpile_html(html)
diagnose_parse_dict(d)
parse_dict_keys: ['resultsAdsBottom', 'resultsAdsTop', 'resultsMain']
number of resultsMain: 10
{'link': 'http://www.devices4less.com/Doorbell.html', 'description': u'Offering remote signal recievers, door knock alerts, doorbell signalers, strobe remote recievers, vibes bed vibrators, telephone signalers, loud horn', 'title': u'\nDoorbell Strobe Lights - Doorbell Signalers - Door Knock Alerting\n'}
In [ ]:
In [ ]:
In [ ]:
url = 'https://www.google.com/search?hl=en&tbm=shop&q=deaf+alarm+clock'
In [3]:
'https://www.google.com/search?hl=en&tbm=shop&q=deaf+alarm+clock&tbs=vw:g,p_ord:rv'
Out[3]:
'https://www.google.com/search?hl=en&tbm=shop&q=deaf+alarm+clock&tbs=vw:g,p_ord:rv'
In [ ]:
'num=100'
In [ ]:
https://www.google.com/search?hl=en&tbm=shop&q=deaf+alarm+clock&tbs=vw:g,p_ord:rv
In [4]:
https://www.google.com/search?tbm=shop&q=deaf+alarm+clock&tbs=vw:g,p_ord%3Arv&start=1&num=100
File "<ipython-input-4-c2241bbd8786>", line 1
https://www.google.com/search?num=100&tbs=p_ord%3Arv&tbm=shop&q=deaf+alarm+clock
^
SyntaxError: invalid syntax
In [14]:
default_gshop_params = {
'tbm':'shop', # the thing that makes it look on google shopping
'tbs':'p_ord%3Arv', # type of view - could be vw:g,p_ord%3Arv for gridded view
'num':'100', # number of results - maximum 100
'start': '1' # number of results to start with
}
default_gshop_params
Out[14]:
{'num': '100', 'start': '1', 'tbm': 'shop', 'tbs': 'p_ord%3Arv'}
In [13]:
dict(default_gshop_params, **{'start':'77', 'q':'adsf+asdf'})
Out[13]:
{'num': '100',
'q': 'adsf+asdf',
'start': '77',
'tbm': 'shop',
'tbs': 'p_ord%3Arv'}
In [ ]:
In [12]:
File "<ipython-input-12-d43da87f5329>", line 1
*{'start':'77'}
^
SyntaxError: invalid syntax
In [50]:
len(user_agent_list)
Out[50]:
1056
In [1]:
In [4]:
len(user_agent_list)
Out[4]:
1056
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
http://www.youtube.com/results?search_query=deaf&page=5
linkto:http://www.gallaudet.edu/clerc_center/information_and_resources/info_to_go/hearing_and_communication_technology/alerting_devices/
Content source: alterfero/global_spa
Similar notebooks: